diff options
| author | Denis Kasak | 2016-10-01 16:50:03 +0200 |
|---|---|---|
| committer | Denis Kasak | 2016-10-01 16:50:03 +0200 |
| commit | 49b60bdc8bb8f0a90ce355a66dadbf6ba48bab09 (patch) | |
| tree | fb2a3010985ff218c86a7bbec7d6f8cb42f2f7c5 /plugin | |
| parent | 11e6c715e8ccc346fd083c5051305c0378b23833 (diff) | |
| download | ctrlp.vim-49b60bdc8bb8f0a90ce355a66dadbf6ba48bab09.tar.gz | |
Use the first mode in g:ctrlp_types as the default.
Diffstat (limited to 'plugin')
| -rw-r--r-- | plugin/ctrlp.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ctrlp.vim b/plugin/ctrlp.vim index 5ab368a..f31b64a 100644 --- a/plugin/ctrlp.vim +++ b/plugin/ctrlp.vim @@ -17,7 +17,7 @@ let [g:ctrlp_lines, g:ctrlp_allfiles, g:ctrlp_alltags, g:ctrlp_alldirs, if !exists('g:ctrlp_map') | let g:ctrlp_map = '<c-p>' | en if !exists('g:ctrlp_cmd') | let g:ctrlp_cmd = 'CtrlP' | en -com! -n=? -com=dir CtrlP cal ctrlp#init('fil', { 'dir': <q-args> }) +com! -n=? -com=dir CtrlP cal ctrlp#init(0, { 'dir': <q-args> }) com! -n=? -com=dir CtrlPMRUFiles cal ctrlp#init('mru', { 'dir': <q-args> }) com! -bar CtrlPBuffer cal ctrlp#init('buf') |