Skip to content

Commit c8d3c29

Browse files
committed
feat: add default autocmd to avoid warning messages
1 parent 64d8948 commit c8d3c29

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

plugin/fall.vim

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,15 @@ augroup fall_plugin
1515
autocmd! *
1616
autocmd User FallPickerEnter:* :
1717
autocmd User FallPickerLeave:* :
18+
autocmd User FallCustomLoaded :
19+
autocmd User FallCustomRecached :
20+
autocmd User FallPreviewRendered:* :
1821
augroup END
1922

2023
if !exists('g:fall_custom_path')
2124
let g:fall_custom_path = has('nvim')
2225
\ ? expand(join([stdpath('config'), 'fall', 'custom.ts'], s:sep))
2326
\ : expand(join([$HOME, '.vim', 'fall', 'custom.ts'], s:sep))
2427
endif
28+
29+

0 commit comments

Comments
 (0)