2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#supports_overscore_sign()
|
2018-06-14 06:31:12 -04:00
|
|
|
if gitgutter#utility#windows()
|
2018-03-31 10:56:26 -04:00
|
|
|
return &encoding ==? 'utf-8'
|
|
|
|
else
|
|
|
|
return &termencoding ==? &encoding || &termencoding == ''
|
|
|
|
endif
|
|
|
|
endfunction
|
2016-11-22 03:36:31 -05:00
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
" True for git v1.7.2+.
|
|
|
|
function! gitgutter#utility#git_supports_command_line_config_override() abort
|
|
|
|
if !exists('s:c_flag')
|
|
|
|
let [_, error_code] = gitgutter#utility#system(gitgutter#git().' -c foo.bar=baz --version')
|
|
|
|
let s:c_flag = !error_code
|
|
|
|
endif
|
|
|
|
return s:c_flag
|
|
|
|
endfunction
|
|
|
|
|
2017-04-01 07:22:06 -04:00
|
|
|
function! gitgutter#utility#setbufvar(buffer, varname, val)
|
2018-11-01 06:03:42 -04:00
|
|
|
let buffer = +a:buffer
|
2018-12-17 06:28:27 -05:00
|
|
|
" Default value for getbufvar() was introduced in Vim 7.3.831.
|
2020-04-25 21:56:16 -04:00
|
|
|
let ggvars = getbufvar(buffer, 'gitgutter')
|
|
|
|
if type(ggvars) == type('')
|
|
|
|
unlet ggvars
|
|
|
|
let ggvars = {}
|
|
|
|
call setbufvar(buffer, 'gitgutter', ggvars)
|
2018-03-31 10:56:26 -04:00
|
|
|
endif
|
2020-04-25 21:56:16 -04:00
|
|
|
let ggvars[a:varname] = a:val
|
2017-04-01 07:22:06 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! gitgutter#utility#getbufvar(buffer, varname, ...)
|
2023-08-20 10:33:32 -04:00
|
|
|
let buffer = +a:buffer
|
|
|
|
let ggvars = getbufvar(buffer, 'gitgutter')
|
2020-04-25 21:56:16 -04:00
|
|
|
if type(ggvars) == type({}) && has_key(ggvars, a:varname)
|
|
|
|
return ggvars[a:varname]
|
2017-04-01 07:22:06 -04:00
|
|
|
endif
|
2019-08-22 11:36:17 -04:00
|
|
|
if a:0
|
|
|
|
return a:1
|
|
|
|
endif
|
2017-04-01 07:22:06 -04:00
|
|
|
endfunction
|
|
|
|
|
2016-11-22 03:36:31 -05:00
|
|
|
function! gitgutter#utility#warn(message) abort
|
|
|
|
echohl WarningMsg
|
2021-05-05 04:25:00 -04:00
|
|
|
echo a:message
|
2016-11-22 03:36:31 -05:00
|
|
|
echohl None
|
|
|
|
let v:warningmsg = a:message
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#warn_once(bufnr, message, key) abort
|
|
|
|
if empty(gitgutter#utility#getbufvar(a:bufnr, a:key))
|
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, a:key, '1')
|
2016-11-22 03:36:31 -05:00
|
|
|
echohl WarningMsg
|
2021-05-05 04:25:00 -04:00
|
|
|
redraw | echom a:message
|
2016-11-22 03:36:31 -05:00
|
|
|
echohl None
|
|
|
|
let v:warningmsg = a:message
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Returns truthy when the buffer's file should be processed; and falsey when it shouldn't.
|
|
|
|
" This function does not and should not make any system calls.
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#is_active(bufnr) abort
|
2022-08-08 09:45:56 -04:00
|
|
|
return gitgutter#utility#getbufvar(a:bufnr, 'enabled') &&
|
2016-11-22 03:36:31 -05:00
|
|
|
\ !pumvisible() &&
|
2018-03-31 10:56:26 -04:00
|
|
|
\ s:is_file_buffer(a:bufnr) &&
|
|
|
|
\ s:exists_file(a:bufnr) &&
|
|
|
|
\ s:not_git_dir(a:bufnr)
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:not_git_dir(bufnr) abort
|
|
|
|
return s:dir(a:bufnr) !~ '[/\\]\.git\($\|[/\\]\)'
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:is_file_buffer(bufnr) abort
|
|
|
|
return empty(getbufvar(a:bufnr, '&buftype'))
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" From tpope/vim-fugitive
|
|
|
|
function! s:winshell()
|
|
|
|
return &shell =~? 'cmd' || exists('+shellslash') && !&shellslash
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" From tpope/vim-fugitive
|
2016-11-22 03:36:31 -05:00
|
|
|
function! gitgutter#utility#shellescape(arg) abort
|
|
|
|
if a:arg =~ '^[A-Za-z0-9_/.-]\+$'
|
|
|
|
return a:arg
|
2018-03-31 10:56:26 -04:00
|
|
|
elseif s:winshell()
|
2016-11-22 03:36:31 -05:00
|
|
|
return '"' . substitute(substitute(a:arg, '"', '""', 'g'), '%', '"%"', 'g') . '"'
|
|
|
|
else
|
|
|
|
return shellescape(a:arg)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#file(bufnr)
|
|
|
|
return s:abs_path(a:bufnr, 1)
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" Not shellescaped
|
|
|
|
function! gitgutter#utility#extension(bufnr) abort
|
|
|
|
return fnamemodify(s:abs_path(a:bufnr, 0), ':e')
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#system(cmd, ...) abort
|
|
|
|
call gitgutter#debug#log(a:cmd, a:000)
|
2016-11-22 03:36:31 -05:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
call s:use_known_shell()
|
2024-01-07 10:14:20 -05:00
|
|
|
let prev_error_code = v:shell_error
|
2018-03-31 10:56:26 -04:00
|
|
|
silent let output = (a:0 == 0) ? system(a:cmd) : system(a:cmd, a:1)
|
2024-01-07 10:14:20 -05:00
|
|
|
let error_code = v:shell_error
|
|
|
|
silent call system('exit ' . prev_error_code)
|
2018-03-31 10:56:26 -04:00
|
|
|
call s:restore_shell()
|
2016-11-22 03:36:31 -05:00
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
return [output, error_code]
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2020-04-25 21:56:16 -04:00
|
|
|
function! gitgutter#utility#has_repo_path(bufnr)
|
|
|
|
return index(['', -1, -2], gitgutter#utility#repo_path(a:bufnr, 0)) == -1
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" Path of file relative to repo root.
|
|
|
|
"
|
|
|
|
" * empty string - not set
|
|
|
|
" * non-empty string - path
|
|
|
|
" * -1 - pending
|
|
|
|
" * -2 - not tracked by git
|
2022-08-08 09:45:56 -04:00
|
|
|
" * -3 - assume unchanged
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#repo_path(bufnr, shellesc) abort
|
2020-04-25 21:56:16 -04:00
|
|
|
let p = gitgutter#utility#getbufvar(a:bufnr, 'path', '')
|
2018-03-31 10:56:26 -04:00
|
|
|
return a:shellesc ? gitgutter#utility#shellescape(p) : p
|
|
|
|
endfunction
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
|
|
|
|
let s:set_path_handler = {}
|
|
|
|
|
2022-08-08 09:45:56 -04:00
|
|
|
function! s:set_path_handler.out(buffer, listing) abort
|
|
|
|
let listing = s:strip_trailing_new_line(a:listing)
|
|
|
|
let [status, path] = [listing[0], listing[2:]]
|
|
|
|
if status =~# '[a-z]'
|
|
|
|
call gitgutter#utility#setbufvar(a:buffer, 'path', -3)
|
|
|
|
else
|
|
|
|
call gitgutter#utility#setbufvar(a:buffer, 'path', path)
|
|
|
|
endif
|
2019-08-22 11:36:17 -04:00
|
|
|
|
|
|
|
if type(self.continuation) == type(function('tr'))
|
|
|
|
call self.continuation()
|
|
|
|
else
|
|
|
|
call call(self.continuation.function, self.continuation.arguments)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:set_path_handler.err(buffer) abort
|
|
|
|
call gitgutter#utility#setbufvar(a:buffer, 'path', -2)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
" continuation - a funcref or hash to call after setting the repo path asynchronously.
|
|
|
|
"
|
|
|
|
" Returns 'async' if the the path is set asynchronously, 0 otherwise.
|
|
|
|
function! gitgutter#utility#set_repo_path(bufnr, continuation) abort
|
2018-03-31 10:56:26 -04:00
|
|
|
" Values of path:
|
|
|
|
" * non-empty string - path
|
|
|
|
" * -1 - pending
|
|
|
|
" * -2 - not tracked by git
|
2022-08-08 09:45:56 -04:00
|
|
|
" * -3 - assume unchanged
|
2018-03-31 10:56:26 -04:00
|
|
|
|
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'path', -1)
|
2022-08-08 09:45:56 -04:00
|
|
|
let cmd = gitgutter#utility#cd_cmd(a:bufnr,
|
2023-07-15 06:43:27 -04:00
|
|
|
\ gitgutter#git().' ls-files -v --error-unmatch --full-name -z -- '.
|
|
|
|
\ gitgutter#utility#shellescape(gitgutter#utility#filename(a:bufnr)))
|
2016-11-22 03:36:31 -05:00
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
if g:gitgutter_async && gitgutter#async#available() && !has('vim_starting')
|
|
|
|
let handler = copy(s:set_path_handler)
|
|
|
|
let handler.continuation = a:continuation
|
|
|
|
call gitgutter#async#execute(cmd, a:bufnr, handler)
|
|
|
|
return 'async'
|
|
|
|
endif
|
2016-11-22 03:36:31 -05:00
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
let [listing, error_code] = gitgutter#utility#system(cmd)
|
2022-08-08 09:45:56 -04:00
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
if error_code
|
2019-08-22 11:36:17 -04:00
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'path', -2)
|
2022-08-08 09:45:56 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let listing = s:strip_trailing_new_line(listing)
|
|
|
|
let [status, path] = [listing[0], listing[2:]]
|
|
|
|
if status =~# '[a-z]'
|
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'path', -3)
|
2016-11-22 03:36:31 -05:00
|
|
|
else
|
2022-08-08 09:45:56 -04:00
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'path', path)
|
2016-11-22 03:36:31 -05:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2019-08-22 11:36:17 -04:00
|
|
|
|
2023-07-15 06:43:27 -04:00
|
|
|
function! gitgutter#utility#clean_smudge_filter_applies(bufnr)
|
|
|
|
let filtered = gitgutter#utility#getbufvar(a:bufnr, 'filter', -1)
|
|
|
|
if filtered == -1
|
|
|
|
let cmd = gitgutter#utility#cd_cmd(a:bufnr,
|
|
|
|
\ gitgutter#git().' check-attr filter -- '.
|
|
|
|
\ gitgutter#utility#shellescape(gitgutter#utility#filename(a:bufnr)))
|
2024-01-07 10:14:20 -05:00
|
|
|
let [out, _] = gitgutter#utility#system(cmd)
|
2023-07-15 06:43:27 -04:00
|
|
|
let filtered = out !~ 'unspecified'
|
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'filter', filtered)
|
|
|
|
endif
|
|
|
|
return filtered
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! gitgutter#utility#cd_cmd(bufnr, cmd) abort
|
2020-05-10 10:24:38 -04:00
|
|
|
let cd = s:unc_path(a:bufnr) ? 'pushd' : (gitgutter#utility#windows() && s:dos_shell() ? 'cd /d' : 'cd')
|
2018-03-31 10:56:26 -04:00
|
|
|
return cd.' '.s:dir(a:bufnr).' && '.a:cmd
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:unc_path(bufnr)
|
|
|
|
return s:abs_path(a:bufnr, 0) =~ '^\\\\'
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2020-05-10 10:24:38 -04:00
|
|
|
function! s:dos_shell()
|
|
|
|
return &shell == 'cmd.exe' || &shell == 'command.com'
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:use_known_shell() abort
|
|
|
|
if has('unix') && &shell !=# 'sh'
|
2021-05-05 04:25:00 -04:00
|
|
|
let [s:shell, s:shellcmdflag, s:shellredir, s:shellpipe, s:shellquote, s:shellxquote] = [&shell, &shellcmdflag, &shellredir, &shellpipe, &shellquote, &shellxquote]
|
2018-03-31 10:56:26 -04:00
|
|
|
let &shell = 'sh'
|
|
|
|
set shellcmdflag=-c shellredir=>%s\ 2>&1
|
2016-11-22 03:36:31 -05:00
|
|
|
endif
|
2021-05-05 04:25:00 -04:00
|
|
|
if has('win32') && (&shell =~# 'pwsh' || &shell =~# 'powershell')
|
|
|
|
let [s:shell, s:shellcmdflag, s:shellredir, s:shellpipe, s:shellquote, s:shellxquote] = [&shell, &shellcmdflag, &shellredir, &shellpipe, &shellquote, &shellxquote]
|
|
|
|
let &shell = 'cmd.exe'
|
|
|
|
set shellcmdflag=/s\ /c shellredir=>%s\ 2>&1 shellpipe=>%s\ 2>&1 shellquote= shellxquote="
|
|
|
|
endif
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:restore_shell() abort
|
2021-05-05 04:25:00 -04:00
|
|
|
if (has('unix') || has('win32')) && exists('s:shell')
|
|
|
|
let [&shell, &shellcmdflag, &shellredir, &shellpipe, &shellquote, &shellxquote] = [s:shell, s:shellcmdflag, s:shellredir, s:shellpipe, s:shellquote, s:shellxquote]
|
2018-03-31 10:56:26 -04:00
|
|
|
endif
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2020-04-25 21:56:16 -04:00
|
|
|
function! gitgutter#utility#get_diff_base(bufnr)
|
|
|
|
let p = resolve(expand('#'.a:bufnr.':p'))
|
|
|
|
let ml = matchlist(p, '\v^fugitive:/.*/(\x{40,})/')
|
|
|
|
if !empty(ml) && !empty(ml[1])
|
|
|
|
return ml[1].'^'
|
|
|
|
endif
|
|
|
|
return g:gitgutter_diff_base
|
|
|
|
endfunction
|
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
" Returns the original path (shellescaped) at the buffer's diff base.
|
|
|
|
function! gitgutter#utility#base_path(bufnr)
|
|
|
|
let diffbase = gitgutter#utility#get_diff_base(a:bufnr)
|
|
|
|
|
|
|
|
" If we already know the original path at this diff base, return it.
|
|
|
|
let basepath = gitgutter#utility#getbufvar(a:bufnr, 'basepath', '')
|
|
|
|
if !empty(basepath)
|
|
|
|
" basepath is diffbase:path
|
|
|
|
" Note that path can also contain colons.
|
|
|
|
" List destructuring / unpacking where the remaining items are assigned
|
|
|
|
" to a single variable (:help let-unpack) is only available in v8.2.0540.
|
|
|
|
let parts = split(basepath, ':', 1)
|
|
|
|
let base = parts[0]
|
|
|
|
let bpath = join(parts[1:], ':')
|
|
|
|
|
|
|
|
if base == diffbase
|
|
|
|
return gitgutter#utility#shellescape(bpath)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Obtain buffers' paths.
|
|
|
|
let current_paths = {}
|
|
|
|
for bufnr in range(1, bufnr('$') + 1)
|
|
|
|
if gitgutter#utility#has_repo_path(bufnr)
|
|
|
|
let current_paths[gitgutter#utility#repo_path(bufnr, 0)] = bufnr
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
" Get a list of file renames at the buffer's diff base.
|
|
|
|
" Store the original paths on any corresponding buffers.
|
|
|
|
" If the buffer's file was one of them, return its original path.
|
|
|
|
let op = ''
|
|
|
|
let renames = s:obtain_file_renames(a:bufnr, diffbase)
|
|
|
|
for [current, original] in items(renames)
|
|
|
|
if has_key(current_paths, current)
|
|
|
|
let bufnr = current_paths[current]
|
|
|
|
let basepath = diffbase.':'.original
|
|
|
|
call gitgutter#utility#setbufvar(bufnr, 'basepath', basepath)
|
|
|
|
|
|
|
|
if bufnr == a:bufnr
|
|
|
|
let op = original
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
if !empty(op)
|
|
|
|
return gitgutter#utility#shellescape(op)
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Buffer's file was not renamed, so store current path and return it.
|
|
|
|
let current_path = gitgutter#utility#repo_path(a:bufnr, 0)
|
|
|
|
let basepath = diffbase.':'.current_path
|
|
|
|
call gitgutter#utility#setbufvar(a:bufnr, 'basepath', basepath)
|
|
|
|
return gitgutter#utility#shellescape(current_path)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Returns a dict of current path to original path at the given base.
|
|
|
|
function! s:obtain_file_renames(bufnr, base)
|
|
|
|
let renames = {}
|
|
|
|
let cmd = gitgutter#git()
|
|
|
|
if gitgutter#utility#git_supports_command_line_config_override()
|
|
|
|
let cmd .= ' -c "core.safecrlf=false"'
|
|
|
|
endif
|
|
|
|
let cmd .= ' diff --diff-filter=R --name-status '.a:base
|
|
|
|
let [out, error_code] = gitgutter#utility#system(gitgutter#utility#cd_cmd(a:bufnr, cmd))
|
|
|
|
if error_code
|
|
|
|
" Assume the problem is the diff base.
|
|
|
|
call gitgutter#utility#warn('g:gitgutter_diff_base ('.a:base.') is invalid')
|
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
for line in split(out, '\n')
|
|
|
|
let fields = split(line)
|
|
|
|
if len(fields) != 3
|
|
|
|
call gitgutter#utility#warn('gitgutter: unable to list renamed files: '.line)
|
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
let [original, current] = fields[1:]
|
|
|
|
let renames[current] = original
|
|
|
|
endfor
|
|
|
|
return renames
|
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:abs_path(bufnr, shellesc)
|
|
|
|
let p = resolve(expand('#'.a:bufnr.':p'))
|
2020-04-25 21:56:16 -04:00
|
|
|
|
|
|
|
" Remove extra parts from fugitive's filepaths
|
|
|
|
let p = substitute(substitute(p, '^fugitive:', '', ''), '\v\.git/\x{40,}/', '', '')
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
return a:shellesc ? gitgutter#utility#shellescape(p) : p
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:dir(bufnr) abort
|
|
|
|
return gitgutter#utility#shellescape(fnamemodify(s:abs_path(a:bufnr, 0), ':h'))
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" Not shellescaped.
|
2023-07-15 06:43:27 -04:00
|
|
|
function! gitgutter#utility#filename(bufnr) abort
|
2018-03-31 10:56:26 -04:00
|
|
|
return fnamemodify(s:abs_path(a:bufnr, 0), ':t')
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:exists_file(bufnr) abort
|
|
|
|
return filereadable(s:abs_path(a:bufnr, 0))
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|
|
|
|
|
2018-12-17 06:28:27 -05:00
|
|
|
" Get rid of any trailing new line or SOH character.
|
|
|
|
"
|
|
|
|
" git ls-files -z produces output with null line termination.
|
|
|
|
" Vim's system() replaces any null characters in the output
|
|
|
|
" with SOH (start of header), i.e. ^A.
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:strip_trailing_new_line(line) abort
|
2018-12-17 06:28:27 -05:00
|
|
|
return substitute(a:line, '[[:cntrl:]]$', '', '')
|
2018-03-31 10:56:26 -04:00
|
|
|
endfunction
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
function! gitgutter#utility#windows()
|
2018-03-31 10:56:26 -04:00
|
|
|
return has('win64') || has('win32') || has('win16')
|
2016-11-22 03:36:31 -05:00
|
|
|
endfunction
|