1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Changed default taglist plugin mapping, added shortcut and command for open html generated files for reStructuredText filetypes

This commit is contained in:
2015-05-25 17:55:33 +02:00
parent 0ad2727e21
commit 17463ca807
2 changed files with 22 additions and 4 deletions

View File

@@ -5,3 +5,18 @@ setlocal spell
setlocal smartindent
setlocal autoindent
setlocal formatoptions=tcq "set VIms default
function <SID>ShowInBrowser()
let l:uri = expand("%:p:r") . ".html"
silent make
call system(g:browser . " " . l:uri)
echohl Statement
echo "Opened '" . l:uri ."' in " . g:browser
echohl None
endfunction
if !exists(":ShowInBrowser")
command ShowInBrowser call s:ShowInBrowser()
map <S-F5> :ShowInBrowser<CR>
endif

9
vimrc
View File

@@ -57,7 +57,7 @@ NeoBundle "vim-scripts/loremipsum"
NeoBundle "vim-scripts/mako.vim"
NeoBundle "vim-scripts/mako.vim--Torborg"
NeoBundle "yegappan/grep"
NeoBundle "zhaocai/DirDiff.vim"
NeoBundle "will133/vim-dirdiff"
NeoBundle "vim-scripts/JavaScript-Indent"
let g:ctags_statusline=1
@@ -206,7 +206,7 @@ let g:showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
nnoremap <silent> <leader>ff :call g:Jsbeautify()<cr>:retab!<cr>
"}}}
"TagListToo {{{2
nmap <Leader>t :TlistToo<CR>
"nmap <Leader>t :TlistToo<CR>
"inherited from TagList
let Tlist_Use_Right_Window = 1
"show menu in gvim. usefull to pop it up from kbd
@@ -285,9 +285,12 @@ nnoremap <silent> <unique> <Leader>oc :Occur<CR>
nnoremap <silent> <unique> <Leader>om :Moccur<CR>
nnoremap <silent> <unique> <Leader>8 *<C-o>:Moccur<CR>
" }}}
" Pythonhelper {{{
" Pythonhelper {{{2
let g:pythonhelper_updatetime = 1000
" }}}
"TagListToo {{{2
nmap <Leader>t :Tagbar<CR>
"}}}
"}}}
"KEYS: User defined keyboard shortcuts {{{