108 nnoremap <silent> <leader><leader>k :call UncolorAllWords()<CR> |
108 nnoremap <silent> <leader><leader>k :call UncolorAllWords()<CR> |
109 |
109 |
110 " use Ag for a recursive * |
110 " use Ag for a recursive * |
111 nnoremap g* :call ag#Ag('grep', '--literal ' . shellescape(expand("<cword>")))<CR> |
111 nnoremap g* :call ag#Ag('grep', '--literal ' . shellescape(expand("<cword>")))<CR> |
112 |
112 |
113 " K: doc, gK: Doc w/o using syntax hints, gKK: doc current filename |
113 " K: doc, gKK: doc current filename |
114 nnoremap K :call ViewDoc('doc', expand('<cword>'))<CR> |
114 nnoremap K :call ViewDoc('doc', expand('<cword>'))<CR> |
115 nnoremap gKK :call ViewDoc('doc', expand('%'))<CR> |
115 nnoremap gKK :call ViewDoc('doc', expand('%:p'))<CR> |
116 |
116 |
117 " Tabular shortcuts |
117 " Tabular shortcuts |
118 noremap <leader>ta :Tabularize first_arrow<CR> |
118 noremap <leader>ta :Tabularize first_arrow<CR> |
119 noremap <leader>te :Tabularize first_eq<CR> |
119 noremap <leader>te :Tabularize first_eq<CR> |
120 noremap <leader>tc :Tabularize first_colon<CR> |
120 noremap <leader>tc :Tabularize first_colon<CR> |