-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmarkview.lua
1075 lines (902 loc) · 25.7 KB
/
markview.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--- Functionality provider for `markview.nvim`.
--- Functionalities that are implemented,
---
--- + Buffer registration.
--- + Command.
--- + Dynamic highlight groups.
---
--- **Author**: MD. Mouinul Hossain Shawon (OXY2DEV)
local markview = require("markview");
local spec = require("markview.spec");
local health = require("markview.health");
health.notify("trace", {
level = 1,
message = "Start"
});
--- Was the completion source loaded?
if vim.g.markview_cmp_loaded == nil then
vim.g.markview_cmp_loaded = false;
end
--- Was the completion source for blink loaded?
if vim.g.markview_blink_loaded == nil then
vim.g.markview_blink_loaded = false;
end
local blink = package.loaded["blink.cmp"];
--- NOTE, `blink.cmp` doesn't allow dynamically
--- setting up completion source.
---
--- So, we can only define the source and not register
--- it.
if vim.g.markview_blink_loaded == false and blink ~= nil then
local config = require("blink.cmp.config");
local fts = spec.get({ "preview", "filetypes" }, {
fallback = {},
ignore_enable = true
});
if blink.add_source_provider then
pcall(blink.add_source_provider, "markview", {
name = "markview",
module = "blink-markview",
should_show_items = function ()
return vim.tbl_contains(fts, vim.o.filetype);
end
});
else
pcall(blink.add_provider, "markview", {
name = "markview",
module = "blink-markview",
should_show_items = function ()
return vim.tbl_contains(fts, vim.o.filetype);
end
});
end
for _, ft in ipairs(fts) do
if config then
--- ISSUE, blink doesn't merge default sources.
local default = config.sources.default;
if vim.islist(default) then
config.sources.per_filetype[ft] = vim.list_extend(default, { "markview" });
else
--- Empty context.
local can_exec, exec = pcall(default, {});
if can_exec and vim.islist(exec) then
config.sources.per_filetype[ft] = vim.list_extend(exec, { "markview" });
end
end
else
pcall(blink.add_filetype_source, ft, "markview");
end
end
health.notify("trace", {
level = 5,
message = "Registered source for blink.cmp."
});
end
------------------------------------------------------------------------------------------
--- Sets up the highlight groups.
--- Should be called AFTER loading
--- colorschemes.
require("markview.highlights").setup();
health.notify("trace", {
level = 5,
message = "Created highlight groups"
});
local available_directives = vim.treesitter.query.list_directives();
if vim.list_contains(available_directives, "conceal-patch!") == false then
--- FIX, Patch for the broken (fenced_code_block) concealment.
--- Doesn't hide leading spaces before ```.
vim.treesitter.query.add_directive("conceal-patch!", function (match, _, bufnr, predicate, metadata)
---+${lua}
local id = predicate[2];
local node = match[id];
local r_s, c_s, r_e, c_e = node:range();
local line = vim.api.nvim_buf_get_lines(bufnr, r_s, r_s + 1, true)[1];
if not line then
return;
elseif not metadata[id] then
metadata[id] = { range = {} };
end
line = line:sub(c_s + 1, #line);
if not line:match("^(%s*)%S") then
--- Line is probably empty.
return;
end
local spaces = line:match("^(%s*)%S"):len();
metadata[id].range[1] = r_s;
metadata[id].range[2] = c_s + spaces;
metadata[id].range[3] = r_e;
metadata[id].range[4] = c_e;
metadata[id].conceal = "";
---_
end);
health.notify("trace", {
level = 5,
message = {
{ "Added tree-sitter directive ", "Special" },
{ " conceal-patch! ", "DiagnosticVirtualTextInfo" }
}
});
end
------------------------------------------------------------------------------------------
--- Registers completion sources for `markview.nvim`.
local function register_source()
---+${lua}
---@type boolean, table
local has_cmp, cmp = pcall(require, "cmp");
if has_cmp == false then
return;
elseif vim.g.markview_cmp_loaded == false then
--- Completion source for `markview.nvim`.
local mkv_src = require("cmp-markview");
cmp.register_source("cmp-markview", mkv_src);
vim.g.markview_cmp_loaded = true;
end
local old_src = cmp.get_config().sources or {};
if vim.list_contains(old_src, "cmp-markview") then
return;
end
cmp.setup.buffer({
sources = vim.list_extend(old_src, {
{
name = "cmp-markview",
keyword_length = 1,
options = {}
}
})
});
health.notify("trace", {
level = 5,
message = "Registered source for nvim-cmp."
});
---_
end
--- Registers buffers.
vim.api.nvim_create_autocmd({
"BufAdd", "BufEnter",
"BufWinEnter"
}, {
group = markview.augroup,
callback = function (event)
---+${lua}
local buffer = event.buf;
if markview.state.enable == false then
--- New buffers shouldn't be registered.
return;
elseif markview.actions.__is_attached(buffer) == true then
--- Already attached to this buffer!
return;
end
---@type string, string
local bt, ft = vim.bo[buffer].buftype, vim.bo[buffer].filetype;
local attach_ft = spec.get({ "preview", "filetypes" }, { fallback = {}, ignore_enable = true });
local ignore_bt = spec.get({ "preview", "ignore_buftypes" }, { fallback = {}, ignore_enable = true });
local condition = spec.get({ "preview", "condition" }, { eval_args = { buffer } });
if vim.list_contains(ignore_bt, bt) == true then
--- Ignored buffer type.
return;
elseif vim.list_contains(attach_ft, ft) == false then
--- Ignored file type.
return;
elseif condition == false then
return;
end
markview.actions.attach(buffer);
register_source();
---_
end
});
--- Timer for 'filetype', 'buftype' changes.
local bf_timer = vim.uv.new_timer();
vim.api.nvim_create_autocmd({
"OptionSet"
}, {
group = markview.augroup,
callback = function ()
---+${lua}
bf_timer:stop()
local buffer = vim.api.nvim_get_current_buf();
local option = vim.fn.expand("<amatch>");
local valid_options = { "filetype", "buftype" };
---@type string, string
local bt, ft = vim.bo[buffer].buftype, vim.bo[buffer].filetype;
local attach_ft = spec.get({ "preview", "filetypes" }, { fallback = {}, ignore_enable = true });
local ignore_bt = spec.get({ "preview", "ignore_buftypes" }, { fallback = {}, ignore_enable = true });
local condition = spec.get({ "preview", "condition" }, { eval_args = { buffer } });
if markview.state.enable == false then
--- New buffers shouldn't be registered.
return;
elseif markview.actions.__is_attached(buffer) == true then
--- Already attached to this buffer!
--- We should check if the buffer is still valid.
if vim.list_contains(ignore_bt, bt) == true then
--- Ignored buffer type.
bf_timer:start(5, 0, vim.schedule_wrap(function ()
markview.actions.detach(buffer);
end));
elseif vim.list_contains(attach_ft, ft) == false then
--- Ignored file type.
bf_timer:start(5, 0, vim.schedule_wrap(function ()
markview.actions.detach(buffer);
end));
elseif condition == false then
bf_timer:start(5, 0, vim.schedule_wrap(function ()
markview.actions.detach(buffer);
end));
end
return;
elseif vim.list_contains(valid_options, option) == false then
--- We shouldn't do anything on other events.
return;
end
if vim.list_contains(ignore_bt, bt) == true then
--- Ignored buffer type.
return;
elseif vim.list_contains(attach_ft, ft) == false then
--- Ignored file type.
return;
elseif condition == false then
return;
end
bf_timer:start(5, 0, vim.schedule_wrap(function ()
markview.actions.attach(buffer);
register_source();
end));
---_
end
});
--- Timer for 'wrap', 'linebreak' changes.
local o_timer = vim.uv.new_timer();
--- Option changes(e.g. wrap, linebreak)
vim.api.nvim_create_autocmd({ "OptionSet" }, {
group = markview.augroup,
callback = function ()
---+${lua}
local buffer = vim.api.nvim_get_current_buf();
local option = vim.fn.expand("<amatch>");
local valid_options = { "wrap", "linebreak" };
---@type string[] List of modes where preview is shown.
local preview_modes = spec.get({ "preview", "modes" }, { fallback = {}, ignore_enable = true });
local mode = vim.api.nvim_get_mode().mode;
if markview.actions.__is_attached(buffer) == false then
--- Not attached to a buffer
return;
elseif markview.actions.__is_enabled(buffer) == false then
--- Disabled on this buffer.
return;
elseif vim.list_contains(preview_modes, mode) == false then
--- Wrong mode.
return;
elseif vim.list_contains(valid_options, option) == false then
--- This option shouldn't cause a redraw.
return;
elseif vim.v.option_old == vim.v.option_new then
--- Option value wasn't changed.
return;
end
o_timer:stop()
o_timer:start(5, 0, vim.schedule_wrap(function ()
markview.render(buffer);
end));
---_
end
});
--- Mode changes.
vim.api.nvim_create_autocmd({ "ModeChanged" }, {
group = markview.augroup,
callback = function (event)
---+${lua}
local buffer = event.buf;
local mode = vim.api.nvim_get_mode().mode;
---@type string[] List of modes where preview is shown.
local preview_modes = spec.get({ "preview", "modes" }, { fallback = {}, ignore_enable = true });
---@type string[] List of modes where preview is shown.
local hybrid_modes = spec.get({ "preview", "hybrid_modes" }, { fallback = {}, ignore_enable = true });
local old_mode = vim.v.event.old_mode;
if markview.actions.__is_attached(buffer) == false then
--- Buffer isn't attached!
return;
elseif markview.actions.__is_enabled(buffer) == false then
--- Markview disabled on this buffer.
markview.clear(buffer);
return;
elseif buffer == markview.state.splitview_source then
--- Splitview should only update from
--- cursor movements or content changes.
return;
end
if vim.list_contains(hybrid_modes, mode) then
health.notify("trace", {
level = 1,
message = string.format("Mode(%s): %d", mode, buffer);
});
health.__child_indent_in();
if vim.list_contains(hybrid_modes, old_mode) then
--- Switching between 2 hybrid modes.
goto callback;
else
vim.defer_fn(function ()
markview.render(buffer);
end, 0);
end
elseif vim.list_contains(preview_modes, mode) then
health.notify("trace", {
level = 1,
message = string.format("Mode(%s): %d", mode, buffer);
});
health.__child_indent_in();
--- Preview
if vim.list_contains(hybrid_modes, old_mode) then
vim.defer_fn(function ()
markview.render(buffer);
end, 0);
elseif vim.list_contains(preview_modes, old_mode) then
--- Previous mode was a preview
--- mode.
--- Most likely the text hasn't
--- changed.
goto callback;
else
markview.render(buffer);
end
else
health.notify("trace", {
level = 2,
message = string.format("Mode(%s): %d", mode, buffer);
});
health.__child_indent_in();
--- Clear
if vim.list_contains(preview_modes, old_mode) == false then
--- Previous mode was not a preview
--- mode.
--- Most likely a preview shouldn't
--- have occurred.
goto callback;
else
markview.clear(buffer);
end
end
::callback::
markview.actions.__exec_callback("on_mode_change", buffer, vim.fn.win_findbuf(buffer), mode)
health.__child_indent_de();
---_
end
});
local timer = vim.uv.new_timer();
--- Preview updates.
vim.api.nvim_create_autocmd({
"CursorMoved", "TextChanged",
"CursorMovedI", "TextChangedI"
}, {
group = markview.augroup,
callback = function (event)
---+${lua}
timer:stop();
local buffer = event.buf;
local name = event.event;
local mode = vim.api.nvim_get_mode().mode;
---@type string[] List of modes where preview is shown.
local modes = spec.get({ "preview", "modes" }, { fallback = {}, ignore_enable = true });
---@type string[] List of modes where preview is shown.
local hybrid_modes = spec.get({ "preview", "hybrid_modes" }, { fallback = {}, ignore_enable = true });
local delay = spec.get({ "preview", "debounce" }, { fallback = 25, ignore_enable = true });
--- Checks if we need to immediately render
--- previews or not.
---@return boolean
local function immediate_render ()
---+${lua}
if vim.list_contains({ "TextChanged", "TextChangedI" }, name) then
--- Changes to the buffer content MUST
--- always be debounced to ensure that
--- this doesn't hamper typing.
return false;
end
local utils = require("markview.utils");
local win = utils.buf_getwin(buffer);
if type(win) ~= "number" or markview.win_is_safe(win) == false then
--- Window isn't safe.
--- This shouldn't occur normally.
return false;
end
local distance_threshold = math.floor(vim.o.lines * 0.75);
local pos_y = vim.api.nvim_win_get_cursor(win)[1];
local old = markview.state.buffer_states[buffer].y or 0;
local diff = math.abs(pos_y - old);
--- Update the cached cursor position.
if not markview.state.buffer_states[buffer].y then
markview.state.buffer_states[buffer].y = pos_y;
elseif diff >= distance_threshold then
markview.state.buffer_states[buffer].y = pos_y;
end
if diff >= distance_threshold then
--- User has covered a significant
--- distance since the last redraw.
---
--- We probably should redraw.
return true;
else
--- User still hasn't covered a large
--- distance.
---
--- We shouldn't redraw.
return false;
end
---_
end
--- Handles the renderer for a buffer.
local handle_renderer = function ()
---+${lua}
---@type integer
local lines = vim.api.nvim_buf_line_count(buffer);
---@type integer
local max_l = spec.get({ "preview", "max_buf_lines" }, { fallback = 1000, ignore_enable = true });
if lines >= max_l then
if immediate_render() == true then
--- Use a small delay to prevent input
--- lags when doing `gg` or `G`.
-- markview.render(buffer);
vim.defer_fn(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.render(buffer);
end, 0);
else
timer:start(delay, 0, vim.schedule_wrap(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.render(buffer);
end));
end
elseif vim.list_contains(hybrid_modes, mode) then
if not markview.state.buffer_states[buffer] then
return;
elseif markview.state.buffer_states[buffer].hybrid_mode == false then
return;
end
--- Hybrid mode movements MUST be
--- handled through debounce.
timer:start(delay, 0, vim.schedule_wrap(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.render(buffer);
end));
elseif vim.list_contains({ "TextChanged", "TextChangedI" }, name) then
--- Buffer content changes MUST be
--- handle via debounce.
timer:start(delay, 0, vim.schedule_wrap(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.render(buffer);
end));
end
---_
end
--- Handles the splitview renderer.
local function handle_splitview ()
---+${lua}
---@type integer
local lines = vim.api.nvim_buf_line_count(buffer);
---@type integer
local max_l = spec.get({ "preview", "max_buf_lines" }, { fallback = 1000, ignore_enable = true });
if lines >= max_l then
if immediate_render() == true then
--- Use a small delay to prevent input
--- lags when doing `gg` or `G`.
-- markview.render(buffer);
vim.defer_fn(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.splitview_render();
end, 0);
elseif vim.list_contains({ "CursorMoved", "CursorMovedI" }, name) then
--- BUG, on Android changing cursor
--- position outside of `defer_fn`
--- results in high input lags.
vim.defer_fn(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.update_splitview_cursor();
end, 0);
else
--- Buffer content change(use debounce).
timer:start(delay, 0, vim.schedule_wrap(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.splitview_render();
end));
end
elseif vim.list_contains({ "TextChanged", "TextChangedI" }, name) then
timer:start(delay, 0, vim.schedule_wrap(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.splitview_render();
end));
else
vim.defer_fn(function ()
if vim.v.exiting ~= vim.NIL then
return;
end
markview.update_splitview_cursor();
end, 0);
end
---_
end
if buffer == markview.state.splitview_source then
handle_splitview();
else
--- Do these checks only for normal buffers.
if markview.actions.__is_attached(buffer) == false then
return;
elseif markview.actions.__is_enabled(buffer) == false then
return;
elseif vim.list_contains(modes, mode) == false then
if buffer == markview.state.splitview_source then
handle_splitview();
end
return;
end
handle_renderer();
end
---_
end
});
--- Updates the highlight groups.
vim.api.nvim_create_autocmd("ColorScheme", {
callback = function ()
local hls = require("markview.highlights");
hls.create(hls.groups);
health.notify("trace", {
level = 5,
message = "Updated highlight groups"
});
end
});
------------------------------------------------------------------------------------------
---@type mkv.cmd_completion
local get_complete_items = {
default = function (str)
---+${lua}
if str == nil then
local _o = vim.tbl_keys(markview.commands);
table.sort(_o);
return _o;
end
local _o = {};
for _, key in ipairs(vim.tbl_keys(markview.commands)) do
if string.match(key, "^" .. str) then
table.insert(_o, key);
end
end
table.sort(_o);
return _o;
---_
end,
attach = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(vim.api.nvim_list_bufs()) do
if markview.buf_is_safe(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
detach = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
enable = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false or markview.actions.__is_enabled(buffer) == true then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
disable = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false or markview.actions.__is_enabled(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
hybridToggle = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false or markview.actions.__is_enabled(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
hybridDisable = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false or markview.actions.__is_enabled(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
hybridEnable = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false or markview.actions.__is_enabled(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
splitOpen = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(markview.state.attached_buffers) do
if markview.buf_is_safe(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
render = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(vim.api.nvim_list_bufs()) do
if markview.buf_is_safe(buffer) == false then
goto continue;
end
if buf == nil then
table.insert(_o, tostring(buffer));
elseif string.match(tostring(buffer), "^" .. buf) then
table.insert(_o, tostring(buffer));
end
::continue::
end
table.sort(_o);
return _o;
---_
end,
clear = function (args, cmd)
---+${lua}
if #args > 3 then
--- Too many arguments!
return {};
elseif #args >= 3 and string.match(cmd, "%s$") then
--- Attempting to get completion beyond
--- the argument count.
return {};
end
local buf = args[3];
local _o = {};
for _, buffer in ipairs(vim.api.nvim_list_bufs()) do
if markview.buf_is_safe(buffer) == false then
goto continue;
end