OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
vim
/
vim80
/
autoload
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
README.txt
773 bytes
04/18/2023 09:20:34 AM
rw-r--r--
📄
ada.vim
22.04 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
adacomplete.vim
3.58 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
ccomplete.vim
16.63 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
clojurecomplete.vim
7.84 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
context.vim
5.33 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
contextcomplete.vim
656 bytes
04/18/2023 09:20:34 AM
rw-r--r--
📄
csscomplete.vim
42.18 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
decada.vim
2.93 KB
04/18/2023 09:20:34 AM
rw-r--r--
📁
dist
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
getscript.vim
24.28 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
gnat.vim
5.21 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
gzip.vim
6.26 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
htmlcomplete.vim
24.85 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
javascriptcomplete.vim
26.39 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrw.vim
519.7 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrwFileHandlers.vim
9.91 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrwSettings.vim
9.96 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
netrw_gitignore.vim
3.05 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
paste.vim
1.18 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
phpcomplete.vim
344.09 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
python3complete.vim
21.07 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
pythoncomplete.vim
21.53 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rubycomplete.vim
23.79 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rust.vim
10.22 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
rustfmt.vim
2.92 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
spellfile.vim
6.07 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
sqlcomplete.vim
38.27 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
syntaxcomplete.vim
30.54 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
tar.vim
21.57 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
tohtml.vim
31.33 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
vimball.vim
23.76 KB
04/18/2023 09:20:34 AM
rw-r--r--
📁
xml
-
05/09/2024 07:13:33 AM
rwxr-xr-x
📄
xmlcomplete.vim
14.59 KB
04/18/2023 09:20:34 AM
rw-r--r--
📄
zip.vim
14.3 KB
04/18/2023 09:20:34 AM
rw-r--r--
Editing: rustfmt.vim
Close
" Author: Stephen Sugden <stephen@stephensugden.com> " " Adapted from https://github.com/fatih/vim-go " For bugs, patches and license go to https://github.com/rust-lang/rust.vim if !exists("g:rustfmt_autosave") let g:rustfmt_autosave = 0 endif if !exists("g:rustfmt_command") let g:rustfmt_command = "rustfmt" endif if !exists("g:rustfmt_options") let g:rustfmt_options = "" endif if !exists("g:rustfmt_fail_silently") let g:rustfmt_fail_silently = 0 endif let s:got_fmt_error = 0 function! s:RustfmtCommandRange(filename, line1, line2) let l:arg = {"file": shellescape(a:filename), "range": [a:line1, a:line2]} return printf("%s %s --write-mode=overwrite --file-lines '[%s]'", g:rustfmt_command, g:rustfmt_options, json_encode(l:arg)) endfunction function! s:RustfmtCommand(filename) return g:rustfmt_command . " --write-mode=overwrite " . g:rustfmt_options . " " . shellescape(a:filename) endfunction function! s:RunRustfmt(command, curw, tmpname) if exists("*systemlist") let out = systemlist(a:command) else let out = split(system(a:command), '\r\?\n') endif if v:shell_error == 0 || v:shell_error == 3 " remove undo point caused via BufWritePre try | silent undojoin | catch | endtry " Replace current file with temp file, then reload buffer call rename(a:tmpname, expand('%')) silent edit! let &syntax = &syntax " only clear location list if it was previously filled to prevent " clobbering other additions if s:got_fmt_error let s:got_fmt_error = 0 call setloclist(0, []) lwindow endif elseif g:rustfmt_fail_silently == 0 " otherwise get the errors and put them in the location list let errors = [] for line in out " src/lib.rs:13:5: 13:10 error: expected `,`, or `}`, found `value` let tokens = matchlist(line, '^\(.\{-}\):\(\d\+\):\(\d\+\):\s*\(\d\+:\d\+\s*\)\?\s*error: \(.*\)') if !empty(tokens) call add(errors, {"filename": @%, \"lnum": tokens[2], \"col": tokens[3], \"text": tokens[5]}) endif endfor if empty(errors) % | " Couldn't detect rustfmt error format, output errors endif if !empty(errors) call setloclist(0, errors, 'r') echohl Error | echomsg "rustfmt returned error" | echohl None endif let s:got_fmt_error = 1 lwindow " We didn't use the temp file, so clean up call delete(a:tmpname) endif call winrestview(a:curw) endfunction function! rustfmt#FormatRange(line1, line2) let l:curw = winsaveview() let l:tmpname = expand("%:p:h") . "/." . expand("%:p:t") . ".rustfmt" call writefile(getline(1, '$'), l:tmpname) let command = s:RustfmtCommandRange(l:tmpname, a:line1, a:line2) call s:RunRustfmt(command, l:curw, l:tmpname) endfunction function! rustfmt#Format() let l:curw = winsaveview() let l:tmpname = expand("%:p:h") . "/." . expand("%:p:t") . ".rustfmt" call writefile(getline(1, '$'), l:tmpname) let command = s:RustfmtCommand(l:tmpname) call s:RunRustfmt(command, l:curw, l:tmpname) endfunction