1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 02:00:05 +08:00
SpaceVim/bundle/vim-over/test/autoload/over/command_line/complete.vim

11 lines
265 B
VimL
Raw Permalink Normal View History

function! s:test_parse_line()
let owl_SID = owl#filename_to_SID("vim-over/autoload/over/command_line/complete.vim")
OwlCheck s:parse_line("homu/h") == [5, "h"]
OwlCheck s:parse_line("homu") == [0, "homu"]
OwlCheck s:parse_line("//") == [2, ""]
endfunction