コード例 #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)