From 80851d1efddc3e018af2c962a61b0e11632f2236 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sat, 3 May 2025 02:13:45 +0300 Subject: [PATCH] chore(config): vim: fix ctrl-s, ctrl-p --- config/vim/after/mappings.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/vim/after/mappings.vim b/config/vim/after/mappings.vim index 62d52e9..026b7f9 100644 --- a/config/vim/after/mappings.vim +++ b/config/vim/after/mappings.vim @@ -17,7 +17,7 @@ cnoreabbrev Qall qall " quit all "" Mappings "***************************************************************************** -noremap :w " save buffer +noremap :w " save buffer " Split noremap h :split " horizontal split @@ -57,7 +57,7 @@ noremap r :tabe =expand("%:p:h") . "/" " fzf.vim let $FZF_DEFAULT_COMMAND = "find * -path '*/\.*' -prune -o -path 'node_modules/**' -prune -o -path 'target/**' -prune -o -path 'vendor/**' -prune -o -path 'dist/**' -prune -o -type f -print -o -type l -print 2> /dev/null" -cnoremap =expand("%:p:h") . "/" +cnoremap =expand("%:p:h") . "/" nnoremap b :Buffers nnoremap e :FZF -m " Recovery commands from history through FZF