diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-06-17 20:47:16 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-06-17 20:47:16 +0200 |
commit | 40c54bc12b5700f6bffed12209489e1f669f6423 (patch) | |
tree | 74b8abded0ba8ce296f3c358fefc16ec04e327a4 /autoload/rust.vim | |
parent | 44b3d860cb85ccb4edd52fb0dcf6a4102d12e82a (diff) | |
download | vim-polyglot-2.9.2.tar.gz vim-polyglot-2.9.2.zip |
Updatev2.9.2
Diffstat (limited to 'autoload/rust.vim')
-rw-r--r-- | autoload/rust.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/rust.vim b/autoload/rust.vim index 12591399..fe7ddff8 100644 --- a/autoload/rust.vim +++ b/autoload/rust.vim @@ -348,7 +348,7 @@ function! s:RmDir(path) echoerr 'Attempted to delete protected path: ' . a:path return 0 endif - silent exe "!rm -rf " . shellescape(a:path) + return system("rm -rf " . shellescape(a:path)) endfunction " Executes {cmd} with the cwd set to {pwd}, without changing Vim's cwd. |