Skip to content

Commit

Permalink
Force correct background color on SpellCap.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Mar 8, 2012
1 parent cc05d32 commit 92006a1
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 147 deletions.
2 changes: 1 addition & 1 deletion .hgsub
Expand Up @@ -18,7 +18,6 @@ vim/bundle/python-mode = [git]git://github.com/sjl/python-mode.git
vim/bundle/slimv = [hg]https://bitbucket.org/sjl/slimv
vim/bundle/threesome = [hg]https://bitbucket.org/sjl/threesome.vim
vim/bundle/vim-makegreen = [git]git://github.com/sjl/vim-makegreen.git
vim/bundle/vim-coffee-script = [git]https://github.com/kchmck/vim-coffee-script.git
vim/bundle/supertab = [git]git://github.com/ervandew/supertab.git
vim/bundle/linediff = [git]git://github.com/AndrewRadev/linediff.vim.git
vim/bundle/indent-object = [git]git://github.com/michaeljsmith/vim-indent-object.git
Expand All @@ -29,5 +28,6 @@ vim/bundle/AnsiEsc.vim = [git]git://github.com/vim-scripts/AnsiEsc.vim.git
vim/bundle/powerline = [git]git://github.com/Lokaltog/vim-powerline.git
vim/bundle/yankring = [git]git://github.com/vim-scripts/YankRing.vim.git
vim/bundle/badwolf = [hg]https://bitbucket.org/sjl/badwolf/
vim/bundle/tslime = [git]git://github.com/sjl/tslime.vim.git

keymando/Plugins/abbrev = [git]git://github.com/keymando/abbrev.git
8 changes: 4 additions & 4 deletions .hgsubstate
Expand Up @@ -2,7 +2,7 @@ c711681883f3419b85494e3b285b988e8e2dcbca keymando/Plugins/abbrev
4d95cb18a3b420154ef978c53de1d2e692f8343d mercurial/templates
d2bb7878622e4c16203acf1c92a0f4bc7ac58003 vim/bundle/AnsiEsc.vim
a41d5d52c39a31128e969e69acf800b198cb07f9 vim/bundle/ack
a9983b93bc23cbe81b9a5c92d5876251c47a7ac7 vim/bundle/badwolf
6073c4e56185776c0fc6a363612d729c6975404c vim/bundle/badwolf
93cb20dbfbab723e1557801469ae70f4f46499da vim/bundle/ctrlp
667a668e114e9ec0e5d4cbcb0962d835b23614c4 vim/bundle/easymotion
03e138c3496926b193402f4e1542f0a99924f999 vim/bundle/fugitive
Expand All @@ -16,14 +16,14 @@ b7889db57c90824ff5092da4fdde9e05689f24fa vim/bundle/nosecompiler
d6da78f985e99d8388cd55db2587b19abc0628c2 vim/bundle/powerline
d27022dc0bf2302cf31015d1ca0a2f80d55f3596 vim/bundle/python-mode
fa3563dda862c1dc46ddac32d8a9f939e9077379 vim/bundle/rainbow-parentheses
6cbccd24e335319cddd96b152f6d480912375039 vim/bundle/slimv
9bbaa62571c2324160c8b901bf2cadfd69f7afce vim/bundle/slimv
c6197a10ace82e0fe0c08e5cf5c017b7069a978e vim/bundle/sparkup
6eec2c131213850ed65fd6da494dfd1a0d620a4e vim/bundle/strftimedammit
ac395b57fec47f034cba151d01669d134ac7041b vim/bundle/supertab
b8a34a485dfdda1f88a2290c8e4b611556cc2fc4 vim/bundle/supertab
4eb2cdfccc016889acfa3b5d63e8f390a87863cf vim/bundle/surround
2616623bb9208c4bf2559b6aa5c1eff53644a0f7 vim/bundle/syntastic
bbc5193de145ba5334cf02693d959f475a3e850b vim/bundle/threesome
b944e534bd6bbfc4fd56d4ee1a8aa831188387b0 vim/bundle/vim-coffee-script
8b551fcb75170ffb5554a3b8bb456b4d8bae1020 vim/bundle/tslime
62b72580aba57cb5185bd077ac7a905c1c6893ea vim/bundle/vim-commentary
6362ba99c825afc046818807267d5c1143b5c887 vim/bundle/vim-javascript
f21fbd8759d7fa6c3cb1bbb9fe05eae90422f01a vim/bundle/vim-makegreen
Expand Down
5 changes: 2 additions & 3 deletions keymando/keymandorc.rb
Expand Up @@ -10,9 +10,8 @@
# Application Switching ------------------------------------------------------------
map "<Ctrl-Shift-J>", lambda { activate('Firefox') }
map "<Ctrl-Shift-P>", lambda { activate('Pixelmator') }
map "<Ctrl-Shift-B>", lambda { activate('Pixen') }
map "<Ctrl-Shift-K>", lambda { activate('MacVim') }
map "<Ctrl-Shift-H>", lambda { activate('iTerm') }
map "<Ctrl-Shift-H>", lambda { activate('Pixen') }
map "<Ctrl-Shift-K>", lambda { activate('iTerm') }
map "<Ctrl-Shift-O>", lambda { activate('Rdio') }
map "<Ctrl-Shift-Y>", lambda { activate('Twitter') }

Expand Down
4 changes: 3 additions & 1 deletion tmux/tmux.conf
Expand Up @@ -91,8 +91,10 @@ bind , command-prompt "rename-window '%%'"

# Copy mode
setw -g mode-keys vi
bind [ copy-mode
bind ` copy-mode
unbind [
unbind p
bind p paste-buffer
bind -t vi-copy v begin-selection
bind -t vi-copy y copy-selection
bind -t vi-copy Escape cancel

0 comments on commit 92006a1

Please sign in to comment.