2 Commits

Author SHA1 Message Date
Steve Losh
2e05087562 Add support for CtrlP. 2012-02-12 15:38:06 -05:00
Steve Losh
a3604f6d17 Added tag v1.0.0 for changeset 621c2b1cd182 2012-02-12 15:10:11 -05:00
2 changed files with 38 additions and 0 deletions

1
.hgtags Normal file
View File

@@ -0,0 +1 @@
621c2b1cd1820ede93da83090ef4240ced361000 v1.0.0

View File

@@ -295,6 +295,43 @@ endif
" }}}
" Plugins {{{
" CtrlP {{{
" the message when no match is found
call HL('CtrlPNoEntries', 'snow', 'taffy', 'bold')
" the matched pattern
call HL('CtrlPMatch', 'orange', 'bg', 'none')
" the line prefix '>' in the match window
call HL('CtrlPLinePre', 'deepgravel', 'bg', 'none')
" the prompts base
call HL('CtrlPPrtBase', 'deepgravel', 'bg', 'none')
" the prompts text
call HL('CtrlPPrtText', 'plain', 'bg', 'none')
" the prompts cursor when moving over the text
call HL('CtrlPPrtCursor', 'coal', 'tardis', 'bold')
" 'prt' or 'win', also for 'regex'
call HL('CtrlPMode1', 'coal', 'tardis', 'bold')
" 'file' or 'path', also for the local working dir
call HL('CtrlPMode2', 'coal', 'tardis', 'bold')
" the scanning status
call HL('CtrlPStats', 'coal', 'tardis', 'bold')
" TODO: CtrlP extensions.
" CtrlPTabExtra : the part of each line thats not matched against (Comment)
" CtrlPqfLineCol : the line and column numbers in quickfix mode (|hl-Search|)
" CtrlPUndoT : the elapsed time in undo mode (|hl-Directory|)
" CtrlPUndoBr : the square brackets [] in undo mode (Comment)
" CtrlPUndoNr : the undo number inside [] in undo mode (String)
" }}}
" EasyMotion {{{
call HL('EasyMotionTarget', 'tardis', 'bg', 'bold')