Created
January 10, 2013 10:21
-
-
Save violetyk/4501004 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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