forked from luna/vim-rana-local
add commands to toggle debug mode within Vim
This commit is contained in:
parent
84e81cb596
commit
eb862c880a
1 changed files with 18 additions and 0 deletions
|
@ -280,6 +280,16 @@ let s:VERSION = '4.0.15'
|
||||||
return s:false
|
return s:false
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:EnableDebugMode()
|
||||||
|
call s:SetIniSetting('settings', 'debug', 'true')
|
||||||
|
let s:is_debug_mode_on = s:true
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:DisableDebugMode()
|
||||||
|
call s:SetIniSetting('settings', 'debug', 'false')
|
||||||
|
let s:is_debug_mode_on = s:false
|
||||||
|
endfunction
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
|
|
||||||
|
@ -318,5 +328,13 @@ let s:VERSION = '4.0.15'
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
|
|
||||||
|
" Plugin Commands {{{
|
||||||
|
|
||||||
|
:command -nargs=0 WakaTimeDebugEnable call s:EnableDebugMode()
|
||||||
|
:command -nargs=0 WakaTimeDebugDisable call s:DisableDebugMode()
|
||||||
|
|
||||||
|
" }}}
|
||||||
|
|
||||||
|
|
||||||
" Restore cpoptions
|
" Restore cpoptions
|
||||||
let &cpo = s:old_cpo
|
let &cpo = s:old_cpo
|
||||||
|
|
Loading…
Reference in a new issue