We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99037db commit ca49b43Copy full SHA for ca49b43
autoload/fall/command/Fall.vim
@@ -3,19 +3,13 @@ function! fall#command#Fall#call(args) abort
3
return
4
endif
5
let l:laststatus_saved = &laststatus
6
- augroup fall_command_Fall
7
- autocmd!
8
- autocmd CmdlineEnter * call s:hide()
9
- autocmd CmdlineLeave * call timer_start(0, { -> s:show() })
10
- augroup END
11
try
12
set laststatus=0
+ call s:hide()
13
call fall#internal#mapping#store()
14
call denops#request('fall', 'picker:command', [a:args])
15
finally
16
17
18
+ call s:show()
19
call fall#internal#tolerant#call({ -> fall#internal#mapping#restore() })
20
call fall#internal#tolerant#call({ -> fall#internal#popup#closeall() })
21
let &laststatus = l:laststatus_saved
0 commit comments