diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-08 23:52:46 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-08 23:52:46 +0200 |
| commit | f20f9acb88c4bfd09e5a087a0da4697e08e81163 (patch) | |
| tree | e687ccfa9e9d35592920e7dfeab1f68efd3e518f | |
| parent | 1cdc597b7b8c26fafa73421375f828801e380ad8 (diff) | |
| download | dotfiles-f20f9acb88c4bfd09e5a087a0da4697e08e81163.tar.gz dotfiles-f20f9acb88c4bfd09e5a087a0da4697e08e81163.zip | |
Fixed ToggleHiddenAll() function not being called in keys.lua
| -rw-r--r-- | autoload/utils.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim index d244e90..1ca005f 100644 --- a/autoload/utils.vim +++ b/autoload/utils.vim @@ -57,7 +57,7 @@ endfunction " Toggle statusline let s:hidden_all = 0 -function! ToggleHiddenAll() +function! utils#ToggleHiddenAll() if s:hidden_all == 0 let s:hidden_all = 1 set noshowmode |
