diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-30 15:13:52 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-30 15:13:52 +0200 |
commit | d8b3edf97a8b27b67352c7d9a079c9d3e381a4b4 (patch) | |
tree | 1de64b4e6961d288d9b90e9d47a633e83eb82d5a /config | |
parent | 7032d8eed5201ee22a36fd667cf78ac3a89db1fb (diff) |
fixed remaps not working
Diffstat (limited to 'config')
-rw-r--r-- | config/old/vim/vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/old/vim/vimrc b/config/old/vim/vimrc index 0dbf474..2a3ee03 100644 --- a/config/old/vim/vimrc +++ b/config/old/vim/vimrc @@ -157,8 +157,8 @@ vnoremap <Leader>u <cmd>'<,'>s/^[0-9]\\+\\. //<cr><esc> " scripts nnoremap <Leader>x <cmd>!chmod +x %<cr> " replace -nnoremap <Leader>sf [[:%s/\<<C-r><C-w>\>/<C-r><C-w><C-w>/gI<Left><Left><Left>]] -nnoremap <Leader>sl [[:s/\<<C-r><C-w>\>/<C-r><C-w><C-w>/gI<Left><Left><Left>]] +nnoremap <Leader>sf yiw:%s/\<<C-r>"\>//gI<Left><Left><Left> +nnoremap <Leader>sl yiw:s/\<<C-r>"\>//gI<Left><Left><Left> " write nnoremap <LocalLeader>w <cmd>write<cr> |