mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2025-12-14 20:35:59 +01:00
* download rust-analyzer * added empty testproject-rust * add integration tests for LspDocumentFormatSync * wipeout all buffer * set shiftwidth and tabstop * set gobal shiftwidth and tabstop * remove tabstop * sleep 100m * remove l:got * get latest line * sleep 4000m * use setl shiftwidth=4 * use %bwipeout! * wait for rust-analyzer to start * fix lint issues * indent left * remove log * disable log * set timeout to 10sec * add 100m sleep * download rust-analyzer for linux neovim * add message to diagnostics test * severity is optional in diagnostics * download rust-analyzer for mac_neovim * update README.md with test section
11 lines
323 B
VimL
11 lines
323 B
VimL
set encoding=utf-8
|
|
call themis#option('recursive', 1)
|
|
call themis#option('reporter', 'spec')
|
|
call themis#helper('command').with(themis#helper('assert'))
|
|
|
|
set runtimepath+=./test/utils
|
|
|
|
" let g:lsp_log_verbose = 1
|
|
" let g:lsp_log_file = expand("~/.config/nvim/data/lsp.log")
|
|
autocmd BufNewFile,BufRead *.rs setfiletype rust
|