@@ -72,7 +72,6 @@ Fall line README.md
7272> [ !NOTE]
7373>
7474> You can confirm your actual key mappings by opening the help window (` <F1> ` ).
75- >
7675
7776| Key Mapping | Description | Plug Mapping |
7877| :------------- | :------------------------------------------------------------------ | :------------------------------------------ |
@@ -109,7 +108,6 @@ Fall line README.md
109108| ` <F4> ` | Switch to the next renderer in the current picker | ` <Plug>(fall-switch-renderer-next) ` |
110109| ` <F5> ` | Switch to the next previewer in the current picker | ` <Plug>(fall-switch-previewer-next) ` |
111110
112-
113111### Customization
114112
115113Use ` FallPickerEnter:* ` autocmd to customize mappings in the picker window.
@@ -189,29 +187,29 @@ import { type Entrypoint } from "jsr:@vim-fall/config@^0.17.3";
189187import * as builtin from " jsr:@vim-fall/std@^0.6.0/builtin" ;
190188
191189export const main: Entrypoint = ({
192- defineItemPickerFromSource ,
193- defineItemPickerFromCurator ,
190+ defineItemPickerFromSource ,
191+ defineItemPickerFromCurator ,
194192}) => {
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+ });
215213};
216214```
217215
0 commit comments