diff options
Diffstat (limited to 'vim/init/basic.vim')
-rw-r--r-- | vim/init/basic.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/init/basic.vim b/vim/init/basic.vim index 945c134..cdb5210 100644 --- a/vim/init/basic.vim +++ b/vim/init/basic.vim | |||
@@ -108,7 +108,7 @@ function! ToggleQuit() | |||
108 | echo message | 108 | echo message |
109 | endfunction | 109 | endfunction |
110 | 110 | ||
111 | nnoremap gl :call ToggleQuit()<CR> | 111 | nnoremap <leader><leader>gl :call ToggleQuit()<CR> |
112 | 112 | ||
113 | " Simply exit when closing the last buffer | 113 | " Simply exit when closing the last buffer |
114 | 114 | ||
@@ -117,7 +117,7 @@ function! Bye() | |||
117 | if g:quitVimWhenPressingCtrlC | 117 | if g:quitVimWhenPressingCtrlC |
118 | :silent! quit | 118 | :silent! quit |
119 | else | 119 | else |
120 | :echo "Press gl to allow quit with <C-c>" | 120 | :echo "Press <leader><leader>gl to allow quit with <C-c>" |
121 | endif | 121 | endif |
122 | else | 122 | else |
123 | :bdelete | 123 | :bdelete |