예제 #1
0
def init():
    vimp.opt['l:filetype'] = 'roslaunch.xml'
    vimp.opt['l:omnifunc'] = LaunchComplete
    vimp.var['b:syntastic_checkers'] = ['rosvim']
    vimp.map('gf', goto_file, 'n', buffer=True)
예제 #2
0
def init():
    vimp.opt['l:filetype'] = 'rosaction'
    vimp.opt['l:omnifunc'] = msg.MsgComplete
    vimp.map('gd', msg.goto_definition, 'n', buffer=True)
예제 #3
0
파일: msg.py 프로젝트: nus/vim-ros
def init():
    vimp.opt['l:filetype'] = 'rosmsg'
    vimp.opt['l:omnifunc'] = complete
    vimp.map('gd', goto_definition, 'n', buffer=True)
예제 #4
0
파일: xacro.py 프로젝트: 4eetah/dotfiles
def init():
    vimp.opt['l:filetype'] = 'xacro.xml'
    vimp.map('gf', goto_file, 'n', buffer=True)
예제 #5
0
파일: msg.py 프로젝트: F34140r/vim-ros
def init():
    vimp.opt['l:filetype'] = 'rosmsg'
    vimp.opt['l:omnifunc'] = complete
    vimp.map('gd', goto_definition, 'n', buffer=True)
예제 #6
0
파일: msg.py 프로젝트: AtsushiSakai/vim-ros
def init():
    vimp.opt["l:filetype"] = "rosmsg"
    vimp.opt["l:omnifunc"] = MsgComplete
    vimp.map("gd", goto_definition, "n", buffer=True)