Skip to content

Commit

Permalink
Done smaller changes to basic.vim and plugins_config.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
amix committed Aug 16, 2012
1 parent eddb45f commit 20c294d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
17 changes: 11 additions & 6 deletions vimrcs/basic.vim
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ set wildmenu

" Ignore compiled files
set wildignore=*.o,*~,*.pyc
if has("win16") || has("win32")
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
else
set wildignore+=.git\*,.hg\*,.svn\*
endif

"Always show current position
set ruler
Expand Down Expand Up @@ -181,8 +186,8 @@ set wrap "Wrap lines
""""""""""""""""""""""""""""""
" Visual mode pressing * or # searches for the current selection
" Super useful! From an idea by Michael Naumann
vnoremap <silent> * :call VisualSelection('f')<CR>
vnoremap <silent> # :call VisualSelection('b')<CR>
vnoremap <silent> * :call VisualSelection('f', '')<CR>
vnoremap <silent> # :call VisualSelection('b', '')<CR>

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Expand Down Expand Up @@ -284,7 +289,7 @@ autocmd BufWrite *.coffee :call DeleteTrailingWS()
" => vimgrep searching and cope displaying
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" When you press gv you vimgrep after the selected text
vnoremap <silent> gv :call VisualSelection('gv')<CR>
vnoremap <silent> gv :call VisualSelection('gv', '')<CR>
" Open vimgrep and put the cursor in the right position
map <leader>g :vimgrep // **/*.<left><left><left><left><left><left><left>
Expand All @@ -293,7 +298,7 @@ map <leader>g :vimgrep // **/*.<left><left><left><left><left><left><left>
map <leader><space> :vimgrep // <C-R>%<C-A><right><right><right><right><right><right><right><right><right>
" When you press <leader>r you can search and replace the selected text
vnoremap <silent> <leader>r :call VisualSelection('replace')<CR>
vnoremap <silent> <leader>r :call VisualSelection('replace', '')<CR>
" Do :help cope if you are unsure what cope is. It's super useful!
"
Expand Down Expand Up @@ -348,7 +353,7 @@ function! CmdLine(str)
unmenu Foo
endfunction

function! VisualSelection(direction) range
function! VisualSelection(direction, extra_filter) range
let l:saved_reg = @"
execute "normal! vgvy"

Expand All @@ -358,7 +363,7 @@ function! VisualSelection(direction) range
if a:direction == 'b'
execute "normal ?" . l:pattern . "^M"
elseif a:direction == 'gv'
call CmdLine("vimgrep " . '/'. l:pattern . '/' . ' **/*.')
call CmdLine("vimgrep " . '/'. l:pattern . '/' . ' **/*.' . a:extra_filter)
elseif a:direction == 'replace'
call CmdLine("%s" . '/'. l:pattern . '/')
elseif a:direction == 'f'
Expand Down
9 changes: 7 additions & 2 deletions vimrcs/plugins_config.vim
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ endif
" => CTRL-P
""""""""""""""""""""""""""""""
let g:ctrlp_working_path_mode = 0

let g:ctrlp_map = '<c-f>'
map <c-b> :CtrlPBuffer<cr>
let g:ctrlp_max_height = 20
let g:ctrlp_custom_ignore = 'node_modules\|^\.DS_Store\|^\.git\|^\.coffee'


""""""""""""""""""""""""""""""
Expand Down Expand Up @@ -80,5 +85,5 @@ map <leader>nf :NERDTreeFind<cr>
" => surround.vim config
" Annotate strings with gettext http://amix.dk/blog/post/19678
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
au FileType mako vmap <buffer> Si S"i${ _(<esc>2f"a) }<esc>
vmap Si S)i_<esc>f)
vmap Si S(i_<esc>f)
au FileType mako vmap Si S"i${ _(<esc>2f"a) }<esc>

0 comments on commit 20c294d

Please sign in to comment.