Fri, 25 Oct 2019 14:10:27 -0500
compensate for some muscle memory
.vimrc | file | annotate | diff | comparison | revisions |
--- a/.vimrc +++ b/.vimrc @@ -61,6 +61,8 @@ let s:filename = expand('<sfile>') " Key maps {{{ nnoremap <silent> <F2> :20Lexplore<CR> +nnoremap <silent> <F3> n +nnoremap <silent> <S-F3> N noremap <silent> <F4> :set hls!<CR> nnoremap <silent> <F5> :UndotreeToggle<CR> nnoremap <silent> <F8> :TagbarToggle<CR> @@ -68,6 +70,8 @@ nnoremap <silent> <F8> :TagbarToggle<C " let F4, :noh work as-is in insert mode imap <F4> <C-O><F4> +cmap <F3> <CR> + " chdir to the directory of the open buffer noremap <leader>cd :cd %:p:h<cr>:pwd<cr>