@@ -72,7 +72,6 @@ Fall line README.md
72
72
> [ !NOTE]
73
73
>
74
74
> You can confirm your actual key mappings by opening the help window (` <F1> ` ).
75
- >
76
75
77
76
| Key Mapping | Description | Plug Mapping |
78
77
| :------------- | :------------------------------------------------------------------ | :------------------------------------------ |
@@ -109,7 +108,6 @@ Fall line README.md
109
108
| ` <F4> ` | Switch to the next renderer in the current picker | ` <Plug>(fall-switch-renderer-next) ` |
110
109
| ` <F5> ` | Switch to the next previewer in the current picker | ` <Plug>(fall-switch-previewer-next) ` |
111
110
112
-
113
111
### Customization
114
112
115
113
Use ` FallPickerEnter:* ` autocmd to customize mappings in the picker window.
@@ -189,29 +187,29 @@ import { type Entrypoint } from "jsr:@vim-fall/config@^0.17.3";
189
187
import * as builtin from " jsr:@vim-fall/std@^0.6.0/builtin" ;
190
188
191
189
export const main: Entrypoint = ({
192
- defineItemPickerFromSource ,
193
- defineItemPickerFromCurator ,
190
+ defineItemPickerFromSource ,
191
+ defineItemPickerFromCurator ,
194
192
}) => {
195
- defineItemPickerFromCurator (" git-grep" , builtin .curator .gitGrep , {
196
- previewers: [builtin .previewer .file ],
197
- actions: {
198
- ... builtin .action .defaultOpenActions ,
199
- ... builtin .action .defaultSystemopenActions ,
200
- ... builtin .action .defaultQuickfixActions ,
201
- },
202
- defaultAction: " open" ,
203
- });
204
-
205
- defineItemPickerFromSource (" file" , builtin .source .file , {
206
- matchers: [builtin .matcher .fzf ],
207
- previewers: [builtin .previewer .file ],
208
- actions: {
209
- ... builtin .action .defaultOpenActions ,
210
- ... builtin .action .defaultSystemopenActions ,
211
- ... builtin .action .defaultQuickfixActions ,
212
- },
213
- defaultAction: " open" ,
214
- });
193
+ defineItemPickerFromCurator (" git-grep" , builtin .curator .gitGrep , {
194
+ previewers: [builtin .previewer .file ],
195
+ actions: {
196
+ ... builtin .action .defaultOpenActions ,
197
+ ... builtin .action .defaultSystemopenActions ,
198
+ ... builtin .action .defaultQuickfixActions ,
199
+ },
200
+ defaultAction: " open" ,
201
+ });
202
+
203
+ defineItemPickerFromSource (" file" , builtin .source .file , {
204
+ matchers: [builtin .matcher .fzf ],
205
+ previewers: [builtin .previewer .file ],
206
+ actions: {
207
+ ... builtin .action .defaultOpenActions ,
208
+ ... builtin .action .defaultSystemopenActions ,
209
+ ... builtin .action .defaultQuickfixActions ,
210
+ },
211
+ defaultAction: " open" ,
212
+ });
215
213
};
216
214
```
217
215
0 commit comments