diff options
author | Lucas Hoffmann <l-m-h@web.de> | 2017-05-14 19:42:04 +0200 |
---|---|---|
committer | Lucas Hoffmann <l-m-h@web.de> | 2017-05-14 19:42:04 +0200 |
commit | b1cfe625d519cc76c58f049422e8d24eb5558550 (patch) | |
tree | 85b56ca76e25a3b3a8f0a9b178101101bebce363 /plugin | |
parent | 3318881cb99bc601d3d15cf2986ea6ae85bc4e94 (diff) | |
download | vdebug-b1cfe625d519cc76c58f049422e8d24eb5558550.zip |
Deprecate stand alone option variables
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vdebug.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/vdebug.vim b/plugin/vdebug.vim index fdffdd9..3d5422a 100644 --- a/plugin/vdebug.vim +++ b/plugin/vdebug.vim @@ -202,6 +202,9 @@ function! s:Vdebug_get_options() let name = strpart(name, param_namespace_len) let params[name] = val endfor + if !empty(params) + echoerr "Deprication Warning: The options g:vdebug_options_* are depricated. Please use the g:vdebug_options dictionary." + endif return params endfunction |