mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
11 lines
265 B
VimL
11 lines
265 B
VimL
|
|
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
|
|
|