vim - vundle: ConqueTerm: not an edit command -
i tried install conque-shell
via vundle, , when input :conqueterm bash
in vim, showed 'conqueterm: not edit command'
. thought there wrong path. did write set rtp+=~/.vim/bundle/vundle
in .gvimrc. , configure of vundle @ beginning of .gvimrc
.
i copied .vim/bundle/conque-shell/plugin/conque_term.vim
.vim/plugin/conque_term.vim
, worked.
so, there wrong .gvimrc
?? thanks!
my .gvimrc
: https://gist.github.com/guori12321/5506991
if observe output of :scriptnames
(the list of scripts sourced during startup), you'll note .gvimrc
comes last, after .vimrc
, plugins. therefore, changes 'runtimepath'
there late; plugins (like conqueterm) have been loaded. can read more startup process @ :help initialization
.
even if use gui gvim, put common settings ~/.vimrc
; ~/.gvimrc
file gui-only stuff doesn't apply terminal vim, e.g. setting 'guifont'
, similar options.
Comments
Post a Comment