aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2011-11-26 01:37:26 +0100
committerPeter Odding <peter@peterodding.com>2011-11-26 01:37:26 +0100
commit52881ededa51cbd5ee75c9eaa28fda324c728864 (patch)
treeebf231ba52bc7dfaa7c781cd08a61899406d2835 /autoload
parent9762c28efd5e7ecffc35650dd6147149f2f573a7 (diff)
parent9b4c7741d5e00d92406538f8e86e279d82c498e8 (diff)
downloadvim-easytags-52881ededa51cbd5ee75c9eaa28fda324c728864.tar.gz
Merge branch 'master' of https://github.com/xolox/vim-misc
Diffstat (limited to 'autoload')
-rw-r--r--autoload/xolox/misc/os.vim20
1 files changed, 19 insertions, 1 deletions
diff --git a/autoload/xolox/misc/os.vim b/autoload/xolox/misc/os.vim
index 0852e2d..451ca57 100644
--- a/autoload/xolox/misc/os.vim
+++ b/autoload/xolox/misc/os.vim
@@ -1,12 +1,30 @@
" Vim auto-load script
" Author: Peter Odding <peter@peterodding.com>
-" Last Change: March 15, 2011
+" Last Change: November 24, 2011
" URL: http://peterodding.com/code/vim/misc/
+let g:xolox#misc#os#version = '0.1'
+
" Check whether Vim is running on Microsoft Windows.
function! xolox#misc#os#is_win()
return has('win16') || has('win32') || has('win64')
endfunction
+" Execute an external command (hiding the console on Windows when possible).
+
+function! xolox#misc#os#exec(cmdline, ...)
+ try
+ " Try using my shell.vim plug-in.
+ return call('xolox#shell#execute', [a:cmdline, 1] + a:000)
+ catch /^Vim\%((\a\+)\)\=:E117/
+ " Fall back to system() when we get an "unknown function" error.
+ let output = call('system', [a:cmdline] + a:000)
+ if v:shell_error
+ throw printf("os.vim %s: Command %s failed: %s", g:xolox#misc#os#version, a:cmdline, xolox#misc#str#trim(output))
+ endif
+ return split(output, "\n")
+ endtry
+endfunction
+
" vim: ts=2 sw=2 et