Merge branch 'add-framework-for-taking-path-from-global-variables' into add-mdbg-support

This commit is contained in:
IdanArye 2014-05-22 19:16:18 +03:00
commit 57f86ef3ac

View File

@ -83,3 +83,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