commit 3211eff52e2421113bcc04d4c286ad1822e01872
parent 1ff99ec67b53a214ed7826c3e7f2a11c4859d1a9
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Mon, 27 Jan 2020 23:57:43 +0100
vim: fix some keybinds
Former-commit-id: 041344e033d2c0124c6e83590c13abd8611de2a6
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/vim/vimrc b/vim/vimrc
@@ -324,6 +324,9 @@ let g:dispatch_no_maps = 1
nnoremap `<CR> :Dispatch<CR>
nnoremap '<CR> :Start<CR>
" }}}
+" Table-mode {{{
+let g:table_mode_map_prefix = "<leader><bar>"
+" }}}
" }}}
" }}}
" General {{{
@@ -800,7 +803,7 @@ nnoremap <leader>L :next<CR>
nmap <C-P> <Plug>VimcolorSynstack
" Correct the last spelling error
-inoremap <expr> <C-x>s &spell ? "<c-g>u<Esc>[s0z=`]a<c-g>u" : ""
+inoremap <expr> <C-x>s &spell ? "<c-g>u<Esc>[s1z=`]a<c-g>u" : ""
" Make-ing (use Dispatch if enabled)
nnoremap <leader>m? :set makeprg<CR>