You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the plugin with Vundle. The current commit of the repository it cloned is: commit 4aa69b84c8a58fcec6b6dad6fe244b916b1cf830 (HEAD -> master, origin/master, origin/HEAD)
Steps to reproduce:
In terminal: vim hello.rs
In vim: :w
Expected vs. actual behavior:
Expected:
save the file
Actual:
editor exits with the following error message:
[4]+ Stopped vim hellp.rs
exit
There are stopped jobs.
Running ls -a reveals that there is still a file called .hellp.rs.swp
Paste debugging info from the Rust Vim plugin via one of the following
commands: :RustInfo, :RustInfoToClipboard, or :RustInfoToFile <filename>.
Running any of the commands listed causes a crash similar to the one caused by saving the file.
Contents of ~/.vimrc:
setnocompatible" be iMproved, requiredfiletypeoff" required" set the runtime path to include Vundle and initializesetrtp+=~/.vim/bundle/Vundle.vimcallvundle#begin()
" alternatively, pass a path where Vundle should install plugins"call vundle#begin('~/some/path/here')" let Vundle manage Vundle, requiredPlugin'VundleVim/Vundle.vim'Plugin'https://github.com/scrooloose/nerdtree'Plugin'https://github.com/jiangmiao/auto-pairs'Plugin'https://github.com/vim-syntastic/syntastic'Plugin'https://github.com/frazrepo/vim-rainbow'Plugin'https://github.com/tpope/vim-surround'Plugin'https://github.com/psf/black'Plugin'https://github.com/Yggdroot/indentLine'Plugin'https://github.com/pedrohdz/vim-yaml-folds'Plugin'https://github.com/rust-lang/rust.vim'" All of your Plugins must be added before the following linecallvundle#end()" requiredfiletypepluginindenton" required" To ignore plugin indent changes, instead use:"filetype plugin on"" Brief help" :PluginList - lists configured plugins" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate" :PluginSearch foo - searches for foo; append `!` to refresh local cache" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal"" see :h vundle for more details or wiki for FAQ" Put your non-Plugin stuff after this line
:setnu
:setexpandtab
:setshiftwidth=2
:settabstop=2
:setlist
:setlistchars=tab:>>
:setsmartindent
:setautoindent
:setshell=bash\ -i" Exit Vim if NERDTree is the only window remaining in the only tab.autocmdBufEnter*iftabpagenr('$') ==1&&winnr('$') ==1&&exists('b:NERDTree') &&b:NERDTree.isTabTree() | quit | endif" Configure .sh filesif &filetype==# 'sh'setlocalnoexpandtabendif" Configure python filesletg:python_recommended_style=0" Configure rust files" Also tried calling this 'rs', and removing the section, and setting these manually, and setting them globallyif &filetype==# 'rust
syntaxenableletg:rustfmt_autosave=1endif" Activate rainbowletg:rainbow_active=1" Configure syntasticsetstatusline+=%#warningmsg#
setstatusline+=%{SyntasticStatuslineFlag()}
setstatusline+=%*letg:syntastic_always_populate_loc_list=1letg:syntastic_auto_loc_list=1letg:syntastic_check_on_open=1letg:syntastic_check_on_wq=0
The text was updated successfully, but these errors were encountered:
rust.vim version:
I installed the plugin with Vundle. The current commit of the repository it cloned is:
commit 4aa69b84c8a58fcec6b6dad6fe244b916b1cf830 (HEAD -> master, origin/master, origin/HEAD)
Steps to reproduce:
In terminal:
vim hello.rs
In vim:
:w
Expected vs. actual behavior:
save the file
editor exits with the following error message:
[4]+ Stopped vim hellp.rs exit There are stopped jobs.
Running
ls -a
reveals that there is still a file called.hellp.rs.swp
Paste debugging info from the Rust Vim plugin via one of the following
commands:
:RustInfo
,:RustInfoToClipboard
, or:RustInfoToFile <filename>
.Running any of the commands listed causes a crash similar to the one caused by saving the file.
Contents of
~/.vimrc
:The text was updated successfully, but these errors were encountered: