* Not recommended as it'll likely increase the total indexing time and defeat
the purpose of using custom commands, but should be an option for convenience.
Also, mention the default (of not applying ignore options) more explicitly
in the docs to reduce the number of unnecessary bug reports.
* Add a note about E706.
* Use :buffer commands when opening already opened files, all modes. Refs #97.
* Temporarily enable full-path if input has '/' or '\'. Close#98.
* Ignore possible empty return strings (from malformed tags). Close#99.
* Fix an incorrect cwd bug when opening multiple buffers with <c-o>.
Introduced by f1c2b7a. Refs #108.
* Default keymap can be disabled with `let g:ctrlp_map = ''`. Refs #103.
* Remove duplicate rts entries. Close#107.
* Remove active buffer from MRU listing. Close#66.
* Re-evaluate ctrlp_user_command when changing dir. Fix#69.
* Link to custom ctrlp_user_command config in the docs. Close#70.
* Allow running commands like `:diffthis` when opening multiple files.
* Add experimental extensions:
+ undo.vim (requires v7.3.005+)
+ rtscript.vim (find vimscripts in runtimepath)
* Include the workaround for <bs> and <c-h> for MS-Win. Resolve#62.
* Mention custom_ignore in readme and on the homepage. Resolve#63.
* Check the present of cwd in returned paths. Fix#64.
* Trigger Vim to remove cwd from display-names. Fix#65.
* Some internal changes and additions.
* Submit '/' or '\' to find the project's root. Close#30.
* Add wig flag to glob() and globpath() in addition to expand().
* Make handling working directory less intrusive.
* Save the window heights and restore them later,
prevent ctrlp from nudging the bottom (or top)
windows when it opens.
* Escape whitespaces in path. Close#26.
* Search for and perform actions on anything you want, not just files, buffers and MRU.
Check out the 'extensions' branch for more details and how-to.
* <F5> now also removes deleted files from MRU list.
* Slight sorting change.
Can now use <tab> to auto-complete the directory for the :CtrlP [starting-directory] command.
Prompt history: put last string into history as well (accepted or not).
Remove |g:ctrlp_persistent_input|, |g:ctrlp_live_update| and <c-^>.
Use <c-z> to mark/unmark files and <c-o> to open them. You can enter new input strings and continue to mark more files. The list of marked files will be cleared upon exiting CtrlP.
* New option `g:ctrlp_live_update`: enable/disable the update-as-you-type functionality.
* New option `g:ctrlp_max_depth`: the maximum directory depth to recurse into.
* New command `ResetCtrlP`: reset all options and take in new values of the option variables.
* Various other changes and bugfixes.