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 f65f0a3 commit 45f7e5eCopy full SHA for 45f7e5e
autoload/fall/command/Fall.vim
@@ -2,7 +2,9 @@ function! fall#command#Fall#call(args) abort
2
if denops#plugin#wait('fall') isnot# 0
3
return
4
endif
5
+ let l:laststatus_saved = &laststatus
6
try
7
+ set laststatus=0
8
call fall#internal#cursor#hide()
9
call fall#internal#msgarea#hide()
10
call fall#internal#mapping#store()
@@ -16,6 +18,7 @@ function! fall#command#Fall#call(args) abort
16
18
silent! call fall#internal#popup#close(g:_fall_component_select_winid)
17
19
silent! call fall#internal#popup#close(g:_fall_component_query_winid)
20
silent! call fall#internal#popup#close(g:_fall_component_input_winid)
21
+ silent! let &laststatus = l:laststatus_saved
22
endtry
23
endfunction
24
0 commit comments