Add the function vebugger#util#getToolFullPath

This commit is contained in:
IdanArye 2014-05-22 19:14:34 +03:00
parent e846941323
commit 3d251625c0

View File

@ -57,3 +57,14 @@ function! s:argEscape(arg)
return '"'.escape(a:arg,'"').'"' return '"'.escape(a:arg,'"').'"'
end end
endfunction endfunction
"Return a tool's(usually debugger) full path, or revert to default if that
"path is not defined
function! vebugger#util#getToolFullPath(toolName,default)
let l:optionName='vebugger_path_'.a:toolName
if exists('g:'.l:optionName)
return g:[l:optionName]
else
return a:default
endif
endfunction