comparison runtime/doc/debugger.txt @ 17372:b9bc47742df6

Update runtime files commit https://github.com/vim/vim/commit/396e829fa355ebc92a618ef18266a3fed71b7042 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 13 23:04:31 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jul 2019 23:15:05 +0200
parents c002c4899529
children af69c9335223
comparison
equal deleted inserted replaced
17371:1062026cb98c 17372:b9bc47742df6
1 *debugger.txt* For Vim version 8.1. Last change: 2019 May 12 1 *debugger.txt* For Vim version 8.1. Last change: 2019 Jul 06
2 2
3 3
4 VIM REFERENCE MANUAL by Gordon Prieur 4 VIM REFERENCE MANUAL by Gordon Prieur
5 5
6 6
7 Debugger Support Features *debugger-support* 7 Debugger Support Features *debugger-support*
8
9 These features are for integration with a debugger or an Integrated
10 Programming Environment (IPE) or Integrated Development Environment (IDE).
11 For the debugger running in a Vim terminal window see |terminal-debugger|.
8 12
9 1. Debugger Features |debugger-features| 13 1. Debugger Features |debugger-features|
10 2. Vim Compile Options |debugger-compilation| 14 2. Vim Compile Options |debugger-compilation|
11 3. Integrated Debuggers |debugger-integration| 15 3. Integrated Debuggers |debugger-integration|
12 16
13 17
14 ============================================================================== 18 ==============================================================================
15 1. Debugger Features *debugger-features* 19 1. Debugger Features *debugger-features*
16 20
17 The following features are available for an integration with a debugger or 21 The following features are available:
18 an Integrated Programming Environment (IPE) or Integrated Development
19 Environment (IDE):
20 22
21 Alternate Command Input |alt-input| 23 Alternate Command Input |alt-input|
22 Debug Signs |debug-signs| 24 Debug Signs |debug-signs|
23 Debug Source Highlight |debug-highlight| 25 Debug Source Highlight |debug-highlight|
24 Message Footer |gui-footer| 26 Message Footer |gui-footer|
88 was to allow Sun's Visual WorkShop debugger to display expression evaluations. 90 was to allow Sun's Visual WorkShop debugger to display expression evaluations.
89 However, the feature was implemented in as general a manner as possible and 91 However, the feature was implemented in as general a manner as possible and
90 could be used for displaying other information as well. The functionality is 92 could be used for displaying other information as well. The functionality is
91 limited though, for advanced popups see |popup-window|. 93 limited though, for advanced popups see |popup-window|.
92 94
95 Another way to use the balloon is with the 'balloonexpr' option. This is
96 completely user definable.
97
93 The Balloon Evaluation has some settable parameters too. For Motif the font 98 The Balloon Evaluation has some settable parameters too. For Motif the font
94 list and colors can be set via X resources (XmNballoonEvalFontList, 99 list and colors can be set via X resources (XmNballoonEvalFontList,
95 XmNballoonEvalBackground, and XmNballoonEvalForeground). 100 XmNballoonEvalBackground, and XmNballoonEvalForeground).
96 The 'balloondelay' option sets the delay before an attempt is made to show a 101 The 'balloondelay' option sets the delay before an attempt is made to show a
97 balloon. 102 balloon.
103 matters. 108 matters.
104 109
105 The Balloon evaluation functions are also used to show a tooltip for the 110 The Balloon evaluation functions are also used to show a tooltip for the
106 toolbar. The 'ballooneval' option does not need to be set for this. But the 111 toolbar. The 'ballooneval' option does not need to be set for this. But the
107 other settings apply. 112 other settings apply.
108
109 Another way to use the balloon is with the 'balloonexpr' option. This is
110 completely user definable.
111 113
112 ============================================================================== 114 ==============================================================================
113 2. Vim Compile Options *debugger-compilation* 115 2. Vim Compile Options *debugger-compilation*
114 116
115 The debugger features were added explicitly for use with Sun's Visual 117 The debugger features were added explicitly for use with Sun's Visual