diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-05-13 15:45:41 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-05-13 15:45:41 +0200 |
| commit | f7b897714b9fb198aa77201f9d6ae21301b340fa (patch) | |
| tree | 7ed406ca7bf2204e9d4c305842618e823e0324d0 /autoload/utils.vim | |
| parent | 796ac3e0f25417e198a1a70e4bf6b8894670df8d (diff) | |
| download | dotfiles-f7b897714b9fb198aa77201f9d6ae21301b340fa.tar.gz dotfiles-f7b897714b9fb198aa77201f9d6ae21301b340fa.zip | |
Toggle Verbose function added
Diffstat (limited to 'autoload/utils.vim')
| -rw-r--r-- | autoload/utils.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim index b4356ba..03fdb07 100644 --- a/autoload/utils.vim +++ b/autoload/utils.vim @@ -116,3 +116,17 @@ endfunction "------------------------------------------------- + +" Toggle Verbose +function! utils#ToggleVerbose() + if !&verbose + set verbosefile=~/.config/nvim/verbose.log + set verbose=15 + else + set verbose=0 + set verbosefile= + endif +endfunction + + +"------------------------------------------------- |
