- Fixed for sudo.
This commit is contained in:
parent
24b2ed20c6
commit
4c67a1b1ac
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: neosnippet.vim
|
" FILE: neosnippet.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 23 Sep 2013.
|
" Last Modified: 26 Sep 2013.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -172,6 +172,12 @@ function! s:initialize_snippet_options() "{{{
|
|||||||
endfunction"}}}
|
endfunction"}}}
|
||||||
|
|
||||||
function! neosnippet#edit_snippets(args) "{{{
|
function! neosnippet#edit_snippets(args) "{{{
|
||||||
|
if neosnippet#util#is_sudo()
|
||||||
|
call neosnippet#util#print_error(
|
||||||
|
\ '"sudo vim" is detected. This feature is disabled.')
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
call s:check_initialize()
|
call s:check_initialize()
|
||||||
|
|
||||||
let [args, options] = neosnippet#util#parse_options(
|
let [args, options] = neosnippet#util#parse_options(
|
||||||
@ -1350,7 +1356,7 @@ function! s:initialize_script_variables() "{{{
|
|||||||
let s:snippets_dir = []
|
let s:snippets_dir = []
|
||||||
for dir in split(g:neosnippet#snippets_directory, '\s*,\s*')
|
for dir in split(g:neosnippet#snippets_directory, '\s*,\s*')
|
||||||
let dir = neosnippet#util#expand(dir)
|
let dir = neosnippet#util#expand(dir)
|
||||||
if !isdirectory(dir)
|
if !isdirectory(dir) && !neosnippet#util#is_sudo()
|
||||||
call mkdir(dir, 'p')
|
call mkdir(dir, 'p')
|
||||||
endif
|
endif
|
||||||
call add(s:snippets_dir, dir)
|
call add(s:snippets_dir, dir)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: util.vim
|
" FILE: util.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 02 Mar 2013.
|
" Last Modified: 26 Sep 2013.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -110,6 +110,13 @@ function! neosnippet#util#parse_options(args, options_list) "{{{
|
|||||||
return [args, options]
|
return [args, options]
|
||||||
endfunction"}}}
|
endfunction"}}}
|
||||||
|
|
||||||
|
" Sudo check.
|
||||||
|
function! neosnippet#util#is_sudo() "{{{
|
||||||
|
return $SUDO_USER != '' && $USER !=# $SUDO_USER
|
||||||
|
\ && $HOME !=# expand('~'.$USER)
|
||||||
|
\ && $HOME ==# expand('~'.$SUDO_USER)
|
||||||
|
endfunction"}}}
|
||||||
|
|
||||||
|
|
||||||
let &cpo = s:save_cpo
|
let &cpo = s:save_cpo
|
||||||
unlet s:save_cpo
|
unlet s:save_cpo
|
||||||
|
Loading…
Reference in New Issue
Block a user