Skip to content

Commit

Permalink
Added vim-tagbar to vim bundles.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrochh committed Oct 27, 2014
1 parent 92f4c37 commit 82cc4c4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -66,3 +66,6 @@
[submodule ".vim/bundle/vim-ansible-yaml"]
path = .vim/bundle/vim-ansible-yaml
url = git://github.com/chase/vim-ansible-yaml.git
[submodule ".vim/bundle/tagbar"]
path = .vim/bundle/tagbar
url = https://github.com/majutsushi/tagbar.git
1 change: 1 addition & 0 deletions .vim/bundle/tagbar
Submodule tagbar added at 64e935
9 changes: 6 additions & 3 deletions .vimrc
Expand Up @@ -70,6 +70,9 @@ let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:UltiSnipsJumpBackwardTrigger="<s-tab>"

" Tagbar
" ======
nmap <F8> :TagbarToggle<CR>
" General option
" ===============
Expand Down Expand Up @@ -250,10 +253,10 @@ map <Leader>v :source ~/.vimrc
func! s:CompileLess()
lcd %:p:h
let static_dir = finddir('static', ';')
let l:cmd = "cd " . l:static_dir . " && lessc css/bootstrap.less css/bootstrap.css"
" let l:cmd2 = "cd " . l:static_dir . " && lessc css2/bootstrap.less css2/bootstrap.css"
" let l:cmd = "cd " . l:static_dir . " && lessc css/bootstrap.less css/bootstrap.css"
" let l:cmd = "cd " . l:static_dir . " && lessc css2/bootstrap.less css2/bootstrap.css"
let l:cmd = "cd " . l:static_dir . " && lessc css3/bootstrap.less css3/bootstrap.css"
let l:errs = system(l:cmd)
" let l:errs = system(l:cmd2)
if (!empty(l:errs))
echo l:errs
endif
Expand Down

0 comments on commit 82cc4c4

Please sign in to comment.