6 Commits

Author SHA1 Message Date
Steve Losh
eb9aeff263 Tweak taffy terminal color. 2012-02-13 09:04:49 -05:00
Steve Losh
9f34b65af8 Added tag v1.1.1 for changeset 2804e4d33d91 2012-02-13 08:58:09 -05:00
Steve Losh
f926a5373f Fix coal color in terminals. 2012-02-13 08:57:59 -05:00
Steve Losh
4337437dc0 Added tag v1.1.0 for changeset 9c22ea4982a7 2012-02-12 15:38:11 -05:00
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 42 additions and 2 deletions

3
.hgtags Normal file
View File

@@ -0,0 +1,3 @@
621c2b1cd1820ede93da83090ef4240ced361000 v1.0.0
9c22ea4982a779254214a2fcb4ba62918afcae69 v1.1.0
2804e4d33d917aa2251b6d33709d17223fd5e5d0 v1.1.1

View File

@@ -50,7 +50,7 @@ let s:bwc.plain = ['f8f6f2', 15]
" Pure and simple.
let s:bwc.snow = ['ffffff', 15]
let s:bwc.coal = ['000000', 0]
let s:bwc.coal = ['000000', 16]
" All of the Gravel colors are based on a brown from Clouds Midnight.
let s:bwc.brightgravel = ['d9cec3', 252]
@@ -71,7 +71,7 @@ let s:bwc.dalespale = ['fade3e', 221]
let s:bwc.dirtyblonde = ['f4cf86', 222]
" Delicious, chewy red from Made of Code for the poppiest highlights.
let s:bwc.taffy = ['ff2c4b', 197]
let s:bwc.taffy = ['ff2c4b', 196]
" The star of the show comes straight from Made of Code.
let s:bwc.tardis = ['0a9dff', 39]
@@ -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')