@@ -46,6 +46,14 @@ to test.
4646
4747- The form and syntax of the logging statements target the language at hand
4848(e.g., use ` printf() ` in C/C++ but ` puts() ` in Ruby)
49+ - Support for debugging variable expressions e.g., the values of variables or
50+ arbitrary expressions at certain parts of your code
51+ - Support for <cexpr >: Place your cursor over the variable you want to print and
52+ press ` <leader>DS ` . It will create a debugging string for that variable
53+ - Support for [ vim-repeat] ( https://github.com/tpope/vim-repeat ) . No
54+ need for repeat the same mapping, or rewrite the lengthy expression that you
55+ want to monitor, just use the ` . ` character
56+
4957
5058Currently the following languages are supported. First column corresponds to the
5159standard debugging string while the second to the case of debugging for a
@@ -83,13 +91,7 @@ Swift | :x: | :x:
8391Vim | :heavy_check_mark : | :heavy_check_mark :
8492Visual Basic | :x : | :x :
8593
86- - Support for debugging variable expressions e.g., the values of variables or
87- arbitrary expressions at certain parts of your code
88- - Support for [ vim-repeat] ( https://github.com/tpope/vim-repeat ) . No
89- need for repeat the same mapping, or rewrite the lengthy expression that you
90- want to monitor, just use the ` . ` character
91-
92- For a more detailed outline of ` debugstring ` check
94+ For a more detailed description of ` debugstring ` check
9395[ doc/debugstring.txt] ( https://github.com/bergercookie/vim-debugstring/blob/master/doc/debugstring.txt )
9496
9597## Usage
@@ -115,7 +117,6 @@ std::cout << "[a.c:4] DEBUGGING STRING ==> " << 0 << std::endl;
115117std::cout << " [a.c:4] a_variable: " << a_variable << std::endl;
116118```
117119
118-
119120### Remarks - Debugging
120121
121122* Make sure that ` filetype plugin ` is enabled. A line like ` filetype plugin on ` in
@@ -139,7 +140,6 @@ std::cout << "[a.c:4] a_variable: " << a_variable << std::endl;
139140[ 4 ] : https://github.com/junegunn/vim-plug
140141[ 5 ] : https://github.com/VundleVim/Vundle.vim
141142
142-
143143### Dependencies
144144
145145` debugstring ` depends on the following vim plugins:
0 commit comments