changeset 106:f919d3bf3744

Merged changes.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 07 May 2012 22:15:59 -0700
parents c129a719560f (current diff) a755319f124e (diff)
children 82240fa8b618 5bd55d06cf75
files
diffstat 3 files changed, 14 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/.hgsub	Mon May 07 22:06:28 2012 -0700
+++ b/.hgsub	Mon May 07 22:15:59 2012 -0700
@@ -18,6 +18,7 @@
 vim/bundle/solarized = [git]https://github.com/altercation/vim-colors-solarized.git
 vim/bundle/fugitive = [git]https://github.com/tpope/vim-fugitive.git
 vim/bundle/syntastic = [git]https://github.com/scrooloose/syntastic.git
+vim/bundle/less = [git]https://github.com/groenewege/vim-less.git
 
 vim/bundle/lawrencium = ssh://hg@bitbucket.org/ludovicchabant/vim-lawrencium
 vim/bundle/piecrust = ssh://hg@bitbucket.org/ludovicchabant/vim-piecrust
--- a/.hgsubstate	Mon May 07 22:06:28 2012 -0700
+++ b/.hgsubstate	Mon May 07 22:15:59 2012 -0700
@@ -9,9 +9,10 @@
 8078f3e3ed0f8a954d83ab35f238881e9fce479a vim/bundle/gundo
 3490c63d6827eb1c5fa31e51f090a7d6ca4bc563 vim/bundle/haml
 a63ec818ab216a535258e6ba25596bbb5762421e vim/bundle/lawrencium
+aaf0c284adbda66e3b3c590615a6b6bde3870e43 vim/bundle/less
 fdc0f091c78cd9a474ac3e3cf40ba7d6933ef9da vim/bundle/markdown
 678bb2816874d92bca4eea46e0f5f40a15ddab68 vim/bundle/nerdtree
-d09875b9f1000bf8dac7333985fd3f9786ef1344 vim/bundle/piecrust
+6185e60279c0ea2e383b3566321bbbdb131018c1 vim/bundle/piecrust
 99277d9eed97a59cacc1db8c1dece2bcfd96d877 vim/bundle/powerline
 1b82b6726c9894acd37b70ec1cd451d412bdb0f7 vim/bundle/ragtag
 2914f11f7494adefaaec1d8c817a301c464c94b2 vim/bundle/repeat
--- a/vim/vimrc	Mon May 07 22:06:28 2012 -0700
+++ b/vim/vimrc	Mon May 07 22:15:59 2012 -0700
@@ -306,15 +306,19 @@
 " Simple way to close a buffer without closing the window.
 nnoremap <leader>bd :bprevious<cr>:bdelete #<cr>
 
-" Toggle folds with <space>
+" Toggle folds with <space>.
 nnoremap <space> za
 
-" Create folds with <space> (in visual mode)
+" Create folds with <space> (in visual mode).
 vnoremap <space> zf
 
-" File-type switching
+" File-type switching.
 nnoremap <leader>ftmd :set ft=markdown<cr>
 
+" Quick search and replace.
+nnoremap <leader>s :%s/\<<C-r><C-w>\>//g<left><left>
+vnoremap <leader>s :s/<C-r>///g<left><left>
+
 " }}}
 
 " Abbreviations {{{
@@ -380,5 +384,9 @@
 let g:lawrencium_debug = 1
 let g:lawrencium_trace = 0
 
+" Enable debugging PieCrust
+let g:piecrust_debug = 1
+let g:piecrust_trace = 0
+
 " }}}