diff options
author | Urbain Vaes <urbain@vaes.uk> | 2019-03-26 10:50:50 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2019-03-26 10:50:50 +0100 |
commit | 0b73d545946fa1d62a66138ad30e46cd0f8d358e (patch) | |
tree | 0870d8ae7a75876f5643388b99ed5b1874837ee6 /vim/.vimrc | |
parent | 3f04df2fc99e6cbee9e5f8b0ed98fbb91d95f31b (diff) |
Improve zsh bindings
Diffstat (limited to 'vim/.vimrc')
-rw-r--r-- | vim/.vimrc | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -344,6 +344,7 @@ nnoremap <Leader>r :Start %:p<cr> nnoremap <Leader>R :Start! %:p<cr> nnoremap cqo :copen<cr> +nnoremap cqh :colder<cr> nnoremap cqc :cclose<cr> nnoremap got :call system('urxvt -cd '.getcwd().' &')<cr> @@ -379,9 +380,10 @@ nnoremap ,s :source %<cr> inoreabbrev <expr> #!! "#!/usr/bin/env" . (empty(&filetype) ? '' : ' '.&filetype) " Spell -inoremap <c-s> <esc>1z=eA +inoremap <nowait> <c-g> <esc>h1z=ea +nnoremap <Leader>s 1z= -" Projectionist +" Projectionist nnoremap ,e :E " Unimpaired @@ -534,3 +536,7 @@ if has("nvim") tnoremap <c-_> <c-\><c-n><c-^> nnoremap <Leader>t :b term \| norm A<cr> endif + +"" Experimental {{{1 +set wildcharm=<C-z> +nnoremap ,e :e **/*<C-z><S-Tab> |