-
Notifications
You must be signed in to change notification settings - Fork 676
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve wording for ctrlp_working_path_mode #559
base: master
Are you sure you want to change the base?
Conversation
Make README screenshot narrower so it fits on the GitHub project home page The current screenshot as displayed on https://github.com/kien/ctrlp.vim is squished to fit within 722px, introducing aliasing and making the screenshot hard to read. This updated image is 720px, so it will fit, and provide a better first impression of ctrlp.vim to people visiting the project page. I produced this screenshot in Photoshop by effectively deleting some of the empty space in the middle. The window in the image might not be a realistically-sized one – its width might not be a multiple of the character cell width – but nobody will notice.
👍 |
Much better, now I get it. Thanks! Two further clarifications might help...
|
In Windows, some users set the Cygwin shell as their Vim shell, consider this before rewriting `cd` calls. Checking if `shellcmdflag` contains a backslash should catch all true windows shells. You can also check if &shell contains `sh`, but this seems more robust.
Added support for custom ancestors: g:ctrlp_custom_ancestors.
Moved to ctrlpvim#12 |
Make README screenshot narrower to fit
This creates the ability to add custom highlighting to CtrlP signs/marks if someone wishes to change them. It links back to the Search group to maintain backwards compatibility.
Added CtrlPMark highlight group
Translate documentation to Chinese
Check shell in Windows before assuming cmd.exe
Drop migemo
Update URLs in README to point to new repo
Support ordered processing of multiple g:ctrlp_working_path_mode specifications Clarify g:ctrlp_working_path_mode semantics in readme.md
Add ability to specify a custom ignore function, instead of just patterns
Support ctrlp_custom_ignore as function ref
Update the README to include an example.
Remove custom_ancestors since root_markers does the same thing.
…working_path_mode Conflicts: readme.md
As stated in #397, I've also found the description of the search path flags a bit confusing, I had to resort to the code to understand it. Hopefully this will help.