mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-14 06:58:00 +08:00
49 lines
1.5 KiB
VimL
49 lines
1.5 KiB
VimL
"=============================================================================
|
|
" sudo.vim --- SpaceVim sudo layer
|
|
" Copyright (c) 2016-2021 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg at 163.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
function! SpaceVim#layers#sudo#plugins() abort
|
|
let l:plugins = []
|
|
if has('nvim')
|
|
call add(l:plugins, ['lambdalisue/suda.vim'])
|
|
endif
|
|
return l:plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#sudo#config() abort
|
|
if has('nvim')
|
|
call SpaceVim#mapping#space#def('nnoremap', ['f', 'W'], 'SudaWrite', 'save buffer with sudo', 1)
|
|
command! W SudaWrite
|
|
cnoremap w!! W
|
|
else
|
|
" http://forrst.com/posts/Use_w_to_sudo_write_a_file_with_Vim-uAN
|
|
call SpaceVim#mapping#space#def('nnoremap', ['f', 'W'], 'write !sudo tee % >/dev/null', 'save buffer with sudo', 1)
|
|
cnoremap w!! W
|
|
command! W w !sudo tee % > /dev/null
|
|
endif
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#sudo#health() abort
|
|
call SpaceVim#layers#sudo#plugins()
|
|
call SpaceVim#layers#sudo#config()
|
|
return 1
|
|
endfunction
|
|
|
|
if v:version > 703 || v:version == 703 && has('patch1170')
|
|
function! s:_function(fstr) abort
|
|
return function(a:fstr)
|
|
endfunction
|
|
else
|
|
function! s:_SID() abort
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze__SID$')
|
|
endfunction
|
|
let s:_s = '<SNR>' . s:_SID() . '_'
|
|
function! s:_function(fstr) abort
|
|
return function(substitute(a:fstr, 's:', s:_s, 'g'))
|
|
endfunction
|
|
endif
|