-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfall.txt
739 lines (573 loc) · 22.1 KB
/
fall.txt
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
*fall.txt*: Filter All - Flexible Fuzzy Finder for Vim/Neovim
Author: Alisue <[email protected]>
License: MIT License (See LICENSE)
=============================================================================
CONTENTS *fall-contents*
INTRODUCTION |fall-introduction|
REQUIREMENTS |fall-requirements|
USAGE |fall-usage|
CONFIGURATION |fall-configuration|
CUSTOMIZATION |fall-customization|
INTERFACE |fall-interface|
MODULE |fall-module|
=============================================================================
INTRODUCTION *fall-introduction*
Fall (*fall.vim*) is a flexible Fuzzy Finder for Vim/Neovim.
Key features include:
- Quick help via <F1> key.
- Support for multiple matchers, sorters, renderers, and previewers.
- Submatch capabilities for refined filtering.
- Action selector for invoking various actions.
- Extensible through TypeScript customization.
=============================================================================
REQUIREMENTS *fall-requirements*
Fall relies on denops.vim for its operation.
denops.vim~
An ecosystem enabling Vim/Neovim plugin development in Deno.
https://github.com/vim-denops/denops.vim
The default "nerdfont" renderer necessitates a Nerd Font-configured terminal
for proper icon display.
Nerd Font~
A collection of over 10,000 icons compatible with popular
programming fonts.
https://www.nerdfonts.com/
To disable the "nerdfont" renderer, remove it from the "renderers" array
within the "custom.ts" file. Refer to |fall-customization| for details on
customization.
=============================================================================
USAGE *fall-usage*
The |:Fall| command initiates a floating window for filtering specified
sources. For instance, to filter files in the current directory using the
"file" source:
>
:Fall file
<
To filter files in a specific directory, provide the directory path as an
argument:
>
:Fall file /path/to/directory
<
To filter lines within the current buffer, use the "line" source:
>
:Fall line
<
Sources are defined in "custom.ts" via |:FallCustom|. In default "custom.ts",
the following sources are defined:
Name Description~
"grep" Filter files by its content using grep.
"git-grep" Filter files by its content using git-grep.
"rg" Filter files by its content using ripgrep (rg).
"file" Filter files in the directory.
"file:all" Filter files in the directory without static filters.
"line" Filter lines in the buffer.
"buffer" Filter buffers.
"help" Filter help tags.
"quickfix" Filter |quickfix| list.
"oldfiles" Filter |:oldfiles|.
"history" Filter command history.
Users can define additional sources in "custom.ts" to suit their needs. See
|fall-customization| for customization details.
Within the picker window, the following default mappings are applied. Note
that these may vary based on configuration, and can be confirmed via the <F1>
help prompt.
Key Description~
<C-t> Move cursor to the first item.
<C-g> Move cursor to the last item.
<C-p> Move cursor to the previous item.
<C-n> Move cursor to the next item.
<C-u> Scroll up by 'scroll' lines.
<C-d> Scroll down by 'scroll' lines.
<PageUp> Scroll list content left.
<PageDown> Scroll list content right.
<S-PageUp> Scroll left by 'scroll' lines.
<S-PageDown> Scroll right by 'scroll' lines.
<C-,> Select the current item.
<C-.> Select all items.
<C-j> Select the current item and move to the next item.
<C-k> Move to the previous item and select it.
<M-Home> Move cursor to the first line of preview.
<M-End> Move cursor to the last line of preview.
<M-Up> Move cursor to the previous line of preview.
<M-Down> Move cursor to the next line of preview.
<M-Left> Scroll preview left.
<M-Right> Scroll preview right.
<S-Left> Scroll preview left by 'scroll' lines.
<S-Right> Scroll preview right by 'scroll' lines.
<Tab> Open the action selector.
<F1> Open or close help window.
<F2> Switch to the next matcher.
<F3> Switch to the next sorter.
<F4> Switch to the next renderer.
<F5> Switch to the next previewer.
Uses can define additional mappings via |FallPickerEnter| autocmd. See
|fall-configuration| for details.
=============================================================================
CONFIGURATION *fall-configuration*
In Fall, configurations that leverage Vim's built-in functionality are
categorized as "Configuration." This includes settings such as key mappings,
highlights, and buffer option modifications.
Visit https://github.com/vim-fall/fall.vim/wiki/Configuration if you prefer to
see documentation in a web browser.
-------------------------------------------------------------------------------
MAPPING *fall-configuration-mapping*
Use <Plug> mappings with |cnoremap| in |FallPickerEnter| autocmd to configure
mappings. See |fall-mapping| for a list of available mappings.
For example:
>vim
function! s:my_fall() abort
" Use <Up> and <Down> to navigate instead of <C-n> and <C-p>
cnoremap <nowait> <Up> <Plug>(fall-list-prev)
cnoremap <nowait> <Down> <Plug>(fall-list-next)
" Disable horizontal scroll
cnoremap <nowait> <Nop> <Plug>(fall-list-left)
cnoremap <nowait> <Nop> <Plug>(fall-list-right)
" Open in split window
cnoremap <nowait> <C-x> <Cmd>call fall#action('open:split') <CR>
cnoremap <nowait> <C-v> <Cmd>call fall#action('open:vsplit') <CR>
endfunction
augroup my_fall
autocmd!
autocmd User FallPickerEnter:* call s:my_fall()
augroup END
<
To disable default mappings, use |g:fall#disable_default_mappings| like
>vim
let g:fall#disable_default_mappings = v:true
<
-------------------------------------------------------------------------------
HIGHLIGHT *fall-configuration-highlight*
Use FallXXXXX highlight groups to configure the picker window appearance. See
|fall-highlight| for a list of available highlight groups.
For example:
>vim
function! s:my_fall_style() abort
highlight FallNormal
\ ctermfg=Blue
\ ctermbg=Black
\ guifg=#0000FF
\ guibg=#000000
highlight FallBorder ctermfg=Green guifg=#00FF00
highlight FallInputHeader cterm=bold ctermfg=Yellow guifg=#FFFF00
endfunction
augroup MyFallStyle
autocmd!
autocmd ColorScheme * call s:my_fall_style()
augroup END
call s:my_fall_style()
<
-------------------------------------------------------------------------------
SIGN *fall-configuration-sign*
Use FallXXXXX sign groups to configure the picker window appearance. See
|fall-sign| for a list of available sign groups.
For example:
>vim
function! s:my_fall_style() abort
sign define FallListSelected text=*
endfunction
augroup fall_plugin_style
autocmd!
autocmd ColorScheme * call s:my_fall_style()
augroup END
call s:my_fall_style()
<
-------------------------------------------------------------------------------
AUTOCMD *fall-configuration-autocmd*
Use FallXXXXX autocmd events to configure the picker window behavior. See
|fall-autocmd| for a list of available autocmd events.
For example:
>vim
function! s:my_fall_preview() abort
" Disable number/relativenumber on the preview component
setlocal nonumber norelativenumber
endfunction
augroup my_fall_preview
autocmd!
autocmd User FallPreviewRendered:* call s:my_fall_preview()
augroup END
<
------------------------------------------------------------------------------
FILETYPE *fall-configuration-filetype*
Use fall-xxxxx filetype to configure the picker window appearance and behavior.
See |fall-filetype| for a list of available filetypes.
For example:
>vim
function! s:my_fall_config() abort
" Enable the 'list' option for Fall's components
setlocal list
endfunction
augroup my_fall_config
autocmd!
autocmd FileType fall-input call s:my_fall_config()
autocmd FileType fall-list call s:my_fall_config()
autocmd FileType fall-help call s:my_fall_config()
augroup END
<
==============================================================================
CUSTOMIZATION *fall-customization*
In Fall, settings written in TypeScript to enhance Fall's behavior are
categorized as "Customization." This specifically refers to modifications made
to the user customization file, which can be accessed via the |FallCustom|
command.
Visit https://github.com/vim-fall/fall.vim/wiki/Customization if you prefer to
see documentation in a web browser.
See |fall-module| for explanations of the modules used in customization.
------------------------------------------------------------------------------
CUSTOMIZATION FILE *fall-customization-file*
When you run the |FallCustom| command, the user customization file opens. In
this file, Pickers are defined, and only the Pickers defined here can be used
in Fall.
For example, if you create a user customization file without defining any
Pickers, as shown below, Fall will not have any Pickers available:
>typescript
import type { Entrypoint } from "jsr:@vim-fall/custom";
export const main: Entrypoint = () => {
// WARNING: Since no Pickers are defined, Fall provides no functionality
};
<
------------------------------------------------------------------------------
DEFINING PICKERS *fall-customization-defining-pickers*
A Picker can be defined by specifying at least its name, source, matcher, and
actions. Additionally, if no additional options are required, modules can be
passed as functions directly:
>typescript
import type { Entrypoint } from "jsr:@vim-fall/custom";
import * as builtin from "jsr:@vim-fall/std/builtin";
export const main: Entrypoint = ({ definePickerFromSource }) => {
definePickerFromSource(
"file",
// `builtin.source.file` and `builtin.source.file()` are treated as
// equivalent
builtin.source.file,
{
matchers: [builtin.matcher.fzf],
actions: {
open: builtin.action.open,
},
defaultAction: "open",
},
);
};
<
------------------------------------------------------------------------------
AVAILABLE ARGUMENTS *fall-customization-arguments*
To define a Picker, you use the "definePickerFromSource" function as shown
above. The "main" function receives the following arguments:
Argument Name Description ~
"denops" A Denops instance.
"definePickerFromSource" A function to define a Picker using a Source
and a Matcher.
"definePickerFromCurator" A function to define a Picker using a Curator.
"refineActionPicker" A function to refine the Picker used for
selecting actions.
"refineSetting" A function to adjust various settings.
Users can utilize these functions to define Pickers and customize their
configurations.
See "builtin" modules of https://jsr.io/@vim-fall/std for available official
builtin extensions and https://jsr.io/@vim-fall/extra for available official
extra extensions. And see "denops/fall/_assets/default.custom.ts" for the
latest default customization file.
------------------------------------------------------------------------------
MODULE COMPOSITION *fall-customization-module-composition*
In addition, https://jsr.io/@vim-fall/std provides the following functions to
refine and compose individual modules:
Name Description ~
"bindSourceArgs" Wraps a source to prepend fixed arguments (static or
dynamically resolved) to its input parameters before
execution.
"bindCuratorArgs" Wraps a curator to prepend fixed arguments (static or
dynamically resolved) to its input parameters before
execution.
"refineSource" Applies multiple Refiners to Source to refine and
process generated items.
"refineCurator" Applies multiple Refiners to Curator to refine and
process generated items.
"composeSources" Combines multiple Sources to create a new Source that
sequentially retrieves items from all Sources.
"composeMatchers" Combines multiple Matchers to create a new Matcher
that filters items through all Matchers.
"composeCurators" Combines multiple Curators to create a new Curator
that retrieves items through all Curators.
"composeSorters" Combines multiple Sorters to create a new Sorter that
sorts items through all Sorters.
"composeRenderers" Combines multiple Renderers to create a new Renderer
that processes items through all Renderers.
"composePreviewers" Combines multiple Previewers to create a new Previewer
that generates content from any of the Previewers.
"composeAction" Combines multiple Actions to create a new Action that
invokes all Actions.
By combining these modules, Fall enables flexible functionality.
For example, the following code demonstrates how to create a Source that
retrieves files recorded in Vim's |oldfiles| that exist in the current
directory:
>typescript
import { refineSource } from "jsr:@vim-fall/std"
import * as builtin from "jsr:@vim-fall/std/builtin"
const source = refineSource(
builtin.source.oldfiles,
builtin.refiner.exists,
builtin.refiner.cwd,
);
<
Similarly, the following example shows how to create an Action that change
directory and open:
>typescript
import { composeActions } from "jsr:@vim-fall/std"
import * as builtin from "jsr:@vim-fall/std/builtin"
const action = composeActions(
builtin.action.cd,
builtin.action.open,
);
<
=============================================================================
INTERFACE *fall-interface*
-----------------------------------------------------------------------------
COMMAND *fall-command*
*:Fall*
:Fall {source} [{cmdarg}]
Open picker to filter {source} (defined in "custom.ts" via
|:FallCustom|). {cmdarg} is passed to the source.
*:FallCustom*
:FallCustom
Open "custom.ts" for customization. This TypeScript file exports a
"main" function defining pickers. Changes trigger reload via
|:FallCustomReload|.
See |g:fall_custom_path| for the file path.
*:FallCustomReload*
:FallCustomReload
Reload "custom.ts" to apply changes. Deno's module cache may require
restart.
See |:FallCustomRecache| for cache clearing.
*:FallCustomRecache*
:FallCustomRecache
Clear Deno's local module cache. Useful for dependency updates in
"custom.ts".
-----------------------------------------------------------------------------
MAPPING *fall-mapping*
<Plug>(fall-list-first)
Moves the cursor to the first item in the list.
<Plug>(fall-list-last)
Moves the cursor to the last item in the list.
<Plug>(fall-list-prev)
Moves the cursor to the previous item in the list.
<Plug>(fall-list-next)
Moves the cursor to the next item in the list.
<Plug>(fall-list-prev:scroll)
Moves the cursor up by the value of &scroll in the list.
<Plug>(fall-list-next:scroll)
Moves the cursor down by the value of &scroll in the list.
<Plug>(fall-list-left)
Scrolls the list content to the left.
<Plug>(fall-list-right)
Scrolls the list content to the right.
<Plug>(fall-list-left:scroll)
Scrolls the list content to the left by the value of &scroll.
<Plug>(fall-list-right:scroll)
Scrolls the list content to the right by the value of &scroll.
<Plug>(fall-select)
Selects the currently highlighted item in the list.
<Plug>(fall-select-all)
Selects all items in the list.
<Plug>(fall-switch-matcher-first)
Switches to the first matcher.
<Plug>(fall-switch-matcher-last)
Switches to the last matcher.
<Plug>(fall-switch-matcher-prev)
Switches to the previous matcher.
<Plug>(fall-switch-matcher-next)
Switches to the next matcher.
<Plug>(fall-switch-sorter-first)
Switches to the first sorter.
<Plug>(fall-switch-sorter-last)
Switches to the last sorter.
<Plug>(fall-switch-sorter-prev)
Switches to the previous sorter.
<Plug>(fall-switch-sorter-next)
Switches to the next sorter.
<Plug>(fall-switch-renderer-first)
Switches to the first renderer.
<Plug>(fall-switch-renderer-last)
Switches to the last renderer.
<Plug>(fall-switch-renderer-prev)
Switches to the previous renderer.
<Plug>(fall-switch-renderer-next)
Switches to the next renderer.
<Plug>(fall-switch-previewer-first)
Switches to the first previewer.
<Plug>(fall-switch-previewer-last)
Switches to the last previewer.
<Plug>(fall-switch-previewer-prev)
Switches to the previous previewer.
<Plug>(fall-switch-previewer-next)
Switches to the next previewer.
<Plug>(fall-preview-first)
Moves the preview cursor to the first line.
<Plug>(fall-preview-last)
Moves the preview cursor to the last line.
<Plug>(fall-preview-prev)
Moves the preview cursor to the previous line.
<Plug>(fall-preview-next)
Moves the preview cursor to the next line.
<Plug>(fall-preview-prev:scroll)
Moves the preview cursor up by the value of &scroll.
<Plug>(fall-preview-next:scroll)
Moves the preview cursor down by the value of &scroll.
<Plug>(fall-preview-left)
Scrolls the preview content to the left.
<Plug>(fall-preview-right)
Scrolls the preview content to the right.
<Plug>(fall-preview-left:scroll)
Scrolls the preview content to the left by the value of &scroll.
<Plug>(fall-preview-right:scroll)
Scrolls the preview content to the right by the value of &scroll.
<Plug>(fall-help)
Toggles the help component visibility.
<Plug>(fall-help-prev)
Moves to the previous page in the help component.
<Plug>(fall-help-next)
Moves to the next page in the help component.
<Plug>(fall-action-select)
Opens the action selector for the current item.
-----------------------------------------------------------------------------
HIGHLIGHT *fall-highlight*
*FallNormal*
Default text highlight in the picker window.
*FallBorder*
Border text highlight in the picker window.
*FallInputHeader*
Input header highlight (default: |FallBorder|).
*FallInputCounter*
Input counter highlight (default: |FallBorder|).
*FallInputCursor*
Input cursor highlight (default: |Cursor|).
*FallListMatch*
Matched text highlight (default: |Match|).
*FallListSelected*
Selected items highlight (default: |CurSearch|).
*FallHelpHeader*
Help header highlight (default: |Conceal|).
*FallHelpMappingLhs*
Mapping LHS highlight (default: |Special|).
*FallHelpMappingRhs*
Mapping RHS highlight (default: |Title|).
*FallHelpMappingOperator*
Operator highlight (default: |Operator|).
-----------------------------------------------------------------------------
SIGN *fall-sign*
*FallListSelected*
Indicator sign for the selected item in the list component.
Default to "»".
-----------------------------------------------------------------------------
AUTOCMD *fall-autocmd*
*FallPickerEnter*
FallPickerEnter:{name}
|User| |autocmd| triggered on entering the {name} picker window.
Use to define custom key mappings:
>vim
function! s:my_fall() abort
" Use <Up> and <Down> to navigate instead of <C-n> and <C-p>
cnoremap <nowait> <Up> <Plug>(fall-list-prev)
cnoremap <nowait> <Down> <Plug>(fall-list-next)
" Disable horizontal scroll
cnoremap <nowait> <Nop> <Plug>(fall-list-left)
cnoremap <nowait> <Nop> <Plug>(fall-list-right)
" Open in split window
cnoremap <nowait> <C-x> <Cmd>call fall#action('open:split') <CR>
cnoremap <nowait> <C-v> <Cmd>call fall#action('open:vsplit') <CR>
endfunction
augroup my_fall
autocmd!
autocmd User FallPickerEnter:* call s:my_fall()
augroup END
<
Mappings after this autocmd are discarded before |FallPickerLeave|.
See |FallPickerLeave| for the leave event.
*FallPickerLeave*
FallPickerLeave:{name}
|User| |autocmd| triggered on leaving the {name} picker window.
See |FallPickerEnter| for the entry event.
*FallCustomLoaded*
FallCustomLoaded
|User| |autocmd| triggered when "custom.ts" is loaded.
See |:FallCustomReload| for reloading.
*FallCustomRecached*
FallCustomRecached
|User| |autocmd| triggered when Deno's cache is cleared.
See |:FallCustomRecache| for cache clearing.
*FallPreviewRendered*
FallPreviewRendered:{filename}
|User| |autocmd| triggered when the preview is rendered.
{filename} is the rendered file name.
Use to configure the preview:
>vim
function! s:my_fall_preview() abort
" Enable line number (not available on Vim)
setlocal number
endfunction
augroup my_fall_preview
autocmd!
autocmd User FallPreviewRendered:* call s:my_fall_preview()
augroup END
<
-----------------------------------------------------------------------------
FILETYPE *fall-filetype*
Fall provides the following filetypes:
fall-input Input component filetype.
fall-list List component filetype.
fall-help Help component filetype.
Example usage:
>vim
augroup my_fall_list
autocmd!
autocmd FileType fall-list setlocal list
augroup END
<
Preview filetype is determined by the previewer; use |FallPreviewRendered|.
=============================================================================
MODULE *fall-module*
Fall decomposes the functionality of a Fuzzy Finder into the following
modules:
*fall-module-coordinator*
Coordinator~
A module that determines the style and layout of the picker. Opens
the picker window.
*fall-module-theme*
Theme~
A theme structure used to define the style of the picker. It is passed
to the |fall-module-coordinator|.
*fall-module-source*
Source~
Retrieves data from arbitrary sources and generates an
"AsyncIterableIterator" of items. This module is applied to the
internal collect processor.
*fall-module-matcher*
Matcher~
Filters the items received from the |fall-module-source| based on user
input and generates an "AsyncIterableIterator" of filtered items. It
is applied to the internal match processor.
*fall-module-curator*
Curator~
Combines |fall-module-source| and |fall-module-matcher|, performing
data retrieval and filtering based on user input. Mainly used for
live-grep like feature. It is transformed into |fall-module-source|
with |fall-module-matcher| internally.
*fall-module-sorter*
Sorter~
Sorts items in-place received from the |fall-module-matcher| or
|fall-module-curator|. It is applied to the internal sort processor.
*fall-module-renderer*
Renderer~
Processes sorted items in-place from the |fall-module-sorter| for user
display. It is applied to the internal render processor.
*fall-module-previewer*
Previewer~
Generates content for previewing the currently selected item. It is
applied to the internal preview processor.
*fall-module-action*
Action~
Executes actions on the selected target item.
*fall-module-refiner*
Refiner~
Applies to |fall-module-source| or |fall-module-curator| to refine and
process generated items.
=============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl