Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created January 10, 2013 10:21
Show Gist options
  • Save violetyk/4501004 to your computer and use it in GitHub Desktop.
Save violetyk/4501004 to your computer and use it in GitHub Desktop.
" srcexpl.vim {{{
NeoBundle 'Source-Explorer-srcexpl.vim'
" リフレッシュタイム(ms)
let g:SrcExpl_RefreshTime = 1000
let g:SrcExpl_winHeight = 8
let g:SrcExpl_searchLocalDef = 1
" srcexpl起動次に自動でtagsを作るかどうか
" let g:SrcExpl_UpdateTags = 1
let g:SrcExpl_isUpdateTags = 0
" マッピング
" 戻る機能のMAP(#ノーマルモードで動作する)
" let g:SrcExpl_GoBackMapKey = "<C-b>"
let g:SrcExpl_gobackKey = "<C-b>"
let g:SrcExpl_jumpKey = "<ENTER>"
" // Use 'Exuberant Ctags' with '--sort=foldcase -R .' or '-L cscope.files' to
" // create/update a tags file
let g:SrcExpl_updateTagsCmd = "ctags --sort=foldcase -R ."
" // Set "<F12>" key for updating the tags file artificially
let g:SrcExpl_updateTagsKey = "<F12>""
" Source Explorerの機能ON/OFF(#普通にvimrcで書く方法と同じ)
nnoremap <F10> :SrcExplToggle<CR>
let g:SrcExpl_pluginList = [
\ "__Tag_List__",
\ "_NERD_tree_",
\ "Source_Explorer"
\ ]
" }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment