summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlackEagle <ike.devolder@gmail.com>2019-07-13 14:19:00 +0200
committerBlackEagle <ike.devolder@gmail.com>2019-07-13 14:19:00 +0200
commit78e938c24f3173bfa8fe628ceefda5f5f62d907c (patch)
tree279f04ed7fb12deb156847023032dde9d7ead63a
parent9363c8efe7e4c3d2c30f5ca657eae0d797e79783 (diff)
downloadvdebug-78e938c24f3173bfa8fe628ceefda5f5f62d907c.zip
add documentation about layout and simplified status
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
-rw-r--r--doc/Vdebug.txt49
1 files changed, 48 insertions, 1 deletions
diff --git a/doc/Vdebug.txt b/doc/Vdebug.txt
index f7716f5..d67a030 100644
--- a/doc/Vdebug.txt
+++ b/doc/Vdebug.txt
@@ -852,7 +852,9 @@ The default options look like this: >
\ 'marker_open_tree' : '▾',
\ 'sign_breakpoint' : '▷',
\ 'sign_current' : '▶',
- \ 'continuous_mode' : 1
+ \ 'continuous_mode' : 1,
+ \ 'simplified_status': 1,
+ \ 'layout': 'vertical',
\}
<
You can either use the multi-line notation like above, or set individual keys
@@ -976,6 +978,51 @@ g:vdebug_options.continuous_mode (default = 1)
requests. Press <F6> during a debugging session to stop this, or <Ctrl-C>
when Vdebug is listening.
+g:vdebug_options.simplified_status (default = 1)
+ When enabled the status will be shown in 1 line, if disabled you get a more
+ verbose status output
+
+g:vdebug_options.layout (default = 'vertical')
+ When layout is vertical, the debug session tab will have a vertical split
+ between the source window and the DebuggerStatus, DebuggerStack and
+ DebuggerWatch.
+
+ +------------------------------------+-----------------------------------+
+ | | DebuggerStatus |
+ | +-----------------------------------+
+ | | DebuggerStack |
+ | | |
+ | | |
+ | SourceWindow +-----------------------------------+
+ | | DebuggerWatch |
+ | | |
+ | | |
+ | | |
+ | | |
+ | | |
+ | | |
+ +------------------------------------+-----------------------------------+
+
+ When the layout is horizontal, the debug session tab will have a horizontal
+ split between the source window and the DebuggerStatus and DebuggerStack
+ will be split on the left next to the DebuggerWatch.
+
+ +------------------------------------------------------------------------+
+ | |
+ | |
+ | |
+ | SourceWindow |
+ | |
+ | |
+ | |
+ | |
+ +------------------------------------+-----------------------------------+
+ | DebuggerStatus | |
+ +------------------------------------+ DebuggerWatch |
+ | DebuggerStack | |
+ | | |
+ +------------------------------------+-----------------------------------+
+
==============================================================================
6. Key maps *VdebugKeys*