|
25 | 25 | Bundle "git://github.com/wgibbs/vim-irblack.git" |
26 | 26 | Bundle "git://github.com/wavded/vim-stylus.git" |
27 | 27 |
|
| 28 | + " CtrlP - with FuzzyFinder compatible keymaps |
| 29 | + Bundle "git://github.com/kien/ctrlp.vim.git" |
| 30 | + nnoremap <Leader>b :<C-U>CtrlPBuffer<CR> |
| 31 | + nnoremap <Leader>t :<C-U>CtrlP<CR> |
| 32 | + nnoremap <Leader>T :<C-U>CtrlPTag<CR> |
| 33 | + let g:ctrlp_prompt_mappings = { |
| 34 | + \ 'PrtSelectMove("j")': ['<down>'], |
| 35 | + \ 'PrtSelectMove("k")': ['<up>'], |
| 36 | + \ 'AcceptSelection("h")': ['<c-j>'], |
| 37 | + \ 'AcceptSelection("v")': ['<c-k>', '<RightMouse>'], |
| 38 | + \ } |
| 39 | + |
28 | 40 | Bundle "git://github.com/smerrill/vim-arduino.git" |
29 | 41 | au BufNewFile,BufRead *.pde set filetype=arduino |
30 | 42 | au BufNewFile,BufRead *.ino set filetype=arduino |
|
125 | 137 | " shortcut to align text with Tabular |
126 | 138 | map <Leader>a :Tabularize<space> |
127 | 139 |
|
128 | | - |
129 | | -" Fuzzy finder for quickling opening files / buffers |
130 | | - Bundle "git://github.com/clones/vim-fuzzyfinder.git" |
131 | | - let g:fuf_coveragefile_prompt = '>GoToFile[]>' |
132 | | - let g:fuf_coveragefile_exclude = '\v\~$|' . |
133 | | - \ '\.(o|exe|dll|bak|swp|log|sqlite3|png|gif|jpg)$|' . |
134 | | - \ '(^|[/\\])\.(hg|git|bzr|bundle)($|[/\\])|' . |
135 | | - \ '(^|[/\\])(log|tmp|vendor|system|doc|coverage|build|generated|node_modules)($|[/\\])' |
136 | | - |
137 | | - let g:fuf_keyOpenTabpage = '<D-CR>' |
138 | | - |
139 | | - nmap <Leader>t :FufCoverageFile<CR> |
140 | | - nmap <Leader>b :FufBuffer<CR> |
141 | | - nmap <Leader>f :FufRenewCache<CR> |
142 | | - nmap <Leader>T :FufTagWithCursorWord!<CR> |
143 | | -
|
144 | | - |
145 | 140 | " ZoomWin to fullscreen a particular buffer without losing others |
146 | 141 | Bundle "git://github.com/vim-scripts/ZoomWin.git" |
147 | 142 | map <Leader>z :ZoomWin<CR> |
|
0 commit comments