diff options
author | Naoaki Ueda <uedan@solutionware.jp> | 2020-09-25 15:34:40 +0900 |
---|---|---|
committer | Naoaki Ueda <uedan@solutionware.jp> | 2020-09-25 15:34:40 +0900 |
commit | 05c64f68eafe9dab30249a7e84d1aaab685b8e86 (patch) | |
tree | 138efa798d27bf84cb67b63589f100ee2e2a6c84 /_config | |
parent | 9ce95d65649354b275b84146a59f4896dc9d3b8e (diff) | |
download | vimrc-05c64f68eafe9dab30249a7e84d1aaab685b8e86.tar.gz vimrc-05c64f68eafe9dab30249a7e84d1aaab685b8e86.tar.bz2 vimrc-05c64f68eafe9dab30249a7e84d1aaab685b8e86.zip |
Disable g:ctrlp_switch_buffer in CtrlP.
Diffstat (limited to '_config')
-rw-r--r-- | _config/110-ctrlp.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/_config/110-ctrlp.vim b/_config/110-ctrlp.vim index ac66b5a..20cf363 100644 --- a/_config/110-ctrlp.vim +++ b/_config/110-ctrlp.vim @@ -6,6 +6,8 @@ let g:ctrlp_custom_ignore = { \ 'dir': '\v[\/]node_modules$', \ } +let g:ctrlp_switch_buffer = 0 + if !empty(globpath(&rtp, 'autoload/ctrlp_matchfuzzy.vim')) let g:ctrlp_match_func = {'match': 'ctrlp_matchfuzzy#matcher'} endif |