Skip to content

Instantly share code, notes, and snippets.

@ratheesh
Forked from rainerborene/ctrlp.vim
Created November 22, 2017 13:52
Show Gist options
  • Save ratheesh/db0e656f93667a75af5f7d72cbdb9dcf to your computer and use it in GitHub Desktop.
Save ratheesh/db0e656f93667a75af5f7d72cbdb9dcf to your computer and use it in GitHub Desktop.
Close buffer via <C-@> using CtrlP
let g:ctrlp_buffer_func = { 'enter': 'CtrlPMappings' }
function! CtrlPMappings()
nnoremap <buffer> <silent> <C-@> :call <sid>DeleteBuffer()<cr>
endfunction
function! s:DeleteBuffer()
let path = fnamemodify(getline('.')[2:], ':p')
let bufn = matchstr(path, '\v\d+\ze\*No Name')
exec "bd" bufn ==# "" ? path : bufn
exec "norm \<F5>"
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment