This commit is contained in:
baabelfish 2016-02-22 11:12:53 +02:00
commit c3f6a03349
9 changed files with 123 additions and 35 deletions

View file

@ -49,7 +49,12 @@ endfunction
function! features#info#web()
call suggest#New("def", 0, 0, s:New(1))
let current_word = expand("<cword>")
if modules#isGlobalImport(current_word)
call util#open_module_doc(current_word, "")
else
call suggest#New("def", 0, 0, s:New(1))
endif
endfunction