diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-04-19 11:39:37 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-04-19 11:39:37 +0200 |
commit | ff61029f6e7fbdd05bdacbf7524c3847d8105550 (patch) | |
tree | bebcbf0be45f5a04fb0402b597d3f6f81cc32c3d | |
parent | 0031a91286dd71a50b9d5320f08f87dcc8dbeefa (diff) |
Explicitly turn on debugging
Seems in the current version this only jumps to source lines if the
function is defined in the current file.
-rw-r--r-- | vimrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ " vimrc of Johannes Ranke -" Last Change: Fri Apr 16, 2021 at 02:36 PM +0200 +" Last Change: Mon Apr 19, 2021 at 10:46 AM +0200 " default settings (much is handled by tpope/sensible) {{{1 set ts=2 set sw=2 @@ -67,7 +67,8 @@ let R_openpdf = 1 let R_min_editor_width = 100 let R_rconsole_width = 80 "let R_rmdchunk = '``' -let R_debug = 0 +let R_debug = 1 +let R_dbg_jump = 1 "let RStudio_cmd = '/usr/bin/rstudio' Plug 'mllg/vim-devtools-plugin' |