在vim中编辑时,我想在我的降价文件中植入一些@tags
(例如@sea_ice
,@models
)。目前我正在使用SuperTab来标记普通单词。但是,如果我在<tab>
符号后点击@
,则不会向我提供所有@tags
的列表,而是列出当前上下文中找到的所有字词的长列表。
我注意到SuperTab允许自定义上下文定义,但是,因为我对vim脚本没有任何了解,文档只包含2个示例,我自己无法编写脚本。
经过一番搜索后,我想我可能需要定义一个新的自定义全向函数,特别是函数的下半部分:
function! TagComplete(findstart, base)
if a:findstart
" locate the start of the word
let line = getline('.')
let start = col('.') - 1
while start > 0 && line[start - 1] != '@'
let start -= 1
endwhile
return start
else
" find @tag
let res = []
????
????
endif
return res
endif
endfun
这是我正在处理的代码。但我不知道如何测试它或在哪里放置它。请帮忙
谢谢
答案 0 :(得分:0)
我从未使用过SuperTab,因此我不知道是否以及如何使用该插件来解决这个问题,但内置的手动完成功能非常简单。
答案 1 :(得分:0)
经过一番努力寻找帮助之后,我找到了一个解决方案。
首先创建一个completefunc
,在当前文件中搜索@tags
(对于cherryberryterry的信任:https://www.reddit.com/r/vim/comments/4dg1rx/how_to_define_custom_omnifunc_in_vim_seeking/):
function! CompleteTags(findstart, base)
if a:findstart
return match(matchstr(getline('.'), '.*\%' . col('.') . 'c'), '.*\(^\|\s\)\zs@')
else
let matches = []
" position the cursor on the last column of the last line
call cursor(line('$'), col([line('$'), '$']))
" search backwards through the buffer for all matches
while searchpos('\%(^\|\s\)\zs' . (empty(a:base) ? '@' : a:base) . '[[:alnum:]_]*', 'bW') != [0, 0]
let matches += [matchstr(getline('.'), '\%' . col('.') . 'c@[[:alnum:]_]*')]
endwhile
return filter(matches, "v:val != '@'")
endif
endfunction
set completefunc=CompleteTags
将以下内容放入.vimrc
以使用SuperTab设置制表符完成:
function! TagCompleteContext()
let line = getline('.')
if line[col('.') - 2] == '@'
return "\<c-x>\<c-u>"
endif
endfunction
let g:SuperTabDefaultCompletionType = "context"
let g:SuperTabCompletionContexts = ['TagCompleteContext', 's:ContextText']
let g:SuperTabContextDefaultCompletionType = "<c-p>"