My vim configuration
git clone https://github.com/m-col/vim-misc
Files | Refs | Readme

Commit 57004ac0eb95bbc210f5819447e10717aba226bb
Parent: 0ff2f35798ce5690aa4c6f7a8e7577d6d9f7babf
Author: Matt Colligan <matthewcolligan@improbable.io>
Date: 2023-10-18 19:23:34 +0100
Committer: Matt Colligan <matthewcolligan@improbable.io>
Committed: 2023-10-18 19:23:34 +0100

add keybinding to CtrlPTag

start/self/plugin/keybindings.vim Modified

@@ -114,7 +114,6 @@
 map <Down> j
 map <Up> k
 
-
 " bind scroll to move cursor up and down
 nnoremap <ScrollWheelDown> <Down>
 nnoremap <ScrollWheelUp> <Up>
@@ -131,6 +130,9 @@
 " Github copilot
 imap <silent> <S-Tab> <Plug>(copilot-next)
 
+" CtrlP (in addition to the default Ctrl-p binding)
+nnoremap <silent> <C-[> :CtrlPTag<CR>
+
 " any-jump
 let g:any_jump_disable_default_keybindings = 1
 nnoremap <leader>g :AnyJump<CR>