On Sep 18, 2015 at 20:17, Erik Christiansen wrote:
On 18.09.15 10:33, Samir Benmendil wrote:
On Sep 18, 2015 at 19:09, Erik Christiansen wrote:
Now there's no need to hunt around amongst all sorts of files,
wondering where stuff is configured - it's configured in the config
file!
There's a function for that:
| " edit configs {{{2
| function! EditConfig(what)
| let l:dir = split(&runtimepath,',')[0]
| if a:what == 'vimrc'
| let l:file = expand($MYVIMRC)
| elseif ! isdirectory(globpath(l:dir, a:what))
| echoe a:what." is not valid!"
| elseif empty(&filetype)
| echoe 'filetype is empty!'
| else
| let l:file = l:dir.'/'.a:what.'/'.&filetype.'.vim'
| endif
| | execute ':vsplit '.file
| execute ':lcd %:p:h'
| endf
| nmap <leader>ev :call EditConfig('vimrc')<CR>
| nmap <leader>ef :call EditConfig('ftplugin')<CR>
| nmap <leader>es :call EditConfig('syntax')<CR>
| nmap <leader>ei :call EditConfig('indent')<CR>
| nmap <leader>eu :UltiSnipsEdit<CR>:lcd %:p:h<CR>
This is way simpler than searching for it in the huge monolithic
vimrc.
Samir, your irony gave me a very good belly laugh!
"simpler" was probably not the right choice of word. "easier" is what I
meant to say.
If I want to change filetype specific settings I can hit <leader>ef and
I'll get a new split with a small file containing settings only relevant
to the current filetype regardless of what that filetype is.
With folding, the attractively monolithic .vimrc is visually small.
Structure makes everything readily accessible - without any need for
complex functions to get to a swarm of files.
Of course, folding is great, and everything in my vimrc is folded as
well.
Still, you are most welcome to do it your way.
And so are you to disagree with me.
Samir