Bug: initial value is wrong; it should be false, 0 (#1074)
This caused no effect for the first call to ToggleHiddenAll(). The second call works as value was set correctly inside ToggleHiddenAll() on the first call.
This commit is contained in:
parent
c28d25c152
commit
82b70e3a8e
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ if &diff
|
|||
endif
|
||||
|
||||
" Function for toggling the bottom statusbar:
|
||||
let s:hidden_all = 1
|
||||
let s:hidden_all = 0
|
||||
function! ToggleHiddenAll()
|
||||
if s:hidden_all == 0
|
||||
let s:hidden_all = 1
|
||||
|
|
Loading…
Reference in a new issue