Deprecate the old commands
This commit is contained in:
parent
e6b47365c2
commit
1f894c6e81
@ -417,9 +417,9 @@ COMMANDS *ctrlp-commands*
|
|||||||
:CtrlPClearAllCaches
|
:CtrlPClearAllCaches
|
||||||
Delete all the cache files saved in |g:ctrlp_cache_dir|.
|
Delete all the cache files saved in |g:ctrlp_cache_dir|.
|
||||||
|
|
||||||
*:CtrlPReset*
|
*:CtrlPReload*
|
||||||
:CtrlPReset
|
:CtrlPReload
|
||||||
Reset all options and take in new values of the option variables.
|
Load new values for the option variables.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
The following commands ignore the current value of |g:ctrlp_working_path_mode|:
|
The following commands ignore the current value of |g:ctrlp_working_path_mode|:
|
||||||
@ -802,6 +802,9 @@ CHANGELOG *ctrlp-changelog*
|
|||||||
Before 2012/03/02~
|
Before 2012/03/02~
|
||||||
|
|
||||||
+ Rename:
|
+ Rename:
|
||||||
|
*ClearCtrlPCache* -> |CtrlPClearCache|
|
||||||
|
*ClearAllCtrlPCaches* -> |CtrlPClearAllCaches|
|
||||||
|
*ResetCtrlP* -> |CtrlPReload|
|
||||||
*g:ctrlp_regexp_search* -> |g:ctrlp_regexp|,
|
*g:ctrlp_regexp_search* -> |g:ctrlp_regexp|,
|
||||||
*g:ctrlp_dont_split* -> |g:ctrlp_reuse_window|,
|
*g:ctrlp_dont_split* -> |g:ctrlp_reuse_window|,
|
||||||
*g:ctrlp_jump_to_buffer* -> |g:ctrlp_switch_buffer|.
|
*g:ctrlp_jump_to_buffer* -> |g:ctrlp_switch_buffer|.
|
||||||
@ -872,7 +875,7 @@ Before 2011/09/29~
|
|||||||
|
|
||||||
Before 2011/09/19~
|
Before 2011/09/19~
|
||||||
|
|
||||||
+ New command: |ResetCtrlP|
|
+ New command: ResetCtrlP
|
||||||
+ New options: |g:ctrlp_max_files|,
|
+ New options: |g:ctrlp_max_files|,
|
||||||
|g:ctrlp_max_depth|,
|
|g:ctrlp_max_depth|,
|
||||||
g:ctrlp_live_update
|
g:ctrlp_live_update
|
||||||
|
@ -20,7 +20,11 @@ com! CtrlPMRUFiles cal ctrlp#init(2)
|
|||||||
|
|
||||||
com! CtrlPClearCache cal ctrlp#clr()
|
com! CtrlPClearCache cal ctrlp#clr()
|
||||||
com! CtrlPClearAllCaches cal ctrlp#clra()
|
com! CtrlPClearAllCaches cal ctrlp#clra()
|
||||||
com! CtrlPReset cal ctrlp#reset()
|
com! CtrlPReload cal ctrlp#reset()
|
||||||
|
|
||||||
|
com! ClearCtrlPCache cal ctrlp#clr()
|
||||||
|
com! ClearAllCtrlPCaches cal ctrlp#clra()
|
||||||
|
com! ResetCtrlP cal ctrlp#reset()
|
||||||
|
|
||||||
com! CtrlPCurWD cal ctrlp#init(0, 0)
|
com! CtrlPCurWD cal ctrlp#init(0, 0)
|
||||||
com! CtrlPCurFile cal ctrlp#init(0, 1)
|
com! CtrlPCurFile cal ctrlp#init(0, 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user