X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/fe3919e725e156d751069662d11e38f7b4791de1..5179925d63a908e267c6675e2a2e64bf30d3f727:/.vim/bundle/vim-lsp-ale/test/unit/runtime/autoload/lsp/utils.vim diff --git a/.vim/bundle/vim-lsp-ale/test/unit/runtime/autoload/lsp/utils.vim b/.vim/bundle/vim-lsp-ale/test/unit/runtime/autoload/lsp/utils.vim new file mode 100644 index 00000000..c8dcd35f --- /dev/null +++ b/.vim/bundle/vim-lsp-ale/test/unit/runtime/autoload/lsp/utils.vim @@ -0,0 +1,11 @@ +function! lsp#utils#get_buffer_uri(bufnr) abort + return 'file://' . s:bufname +endfunction + +function! lsp#utils#uri_to_path(uri) abort + return s:bufname +endfunction + +function! lsp#utils#mock_buf_name(name) abort + let s:bufname = a:name +endfunction