File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ typeset _Dbg_space=' '
40
40
# Should we allow editing of debugger commands?
41
41
# The value should either be '-e' or ''. And if it is
42
42
# on, the edit style indicates what style edit keystrokes.
43
- typeset _Dbg_edit=' -e'
43
+ typeset _Dbg_edit=' ' # BashSupport Pro: removed ' -e' to disable readline support because it may break with custom inputrc settings
44
44
typeset _Dbg_edit_style=' emacs' # or vi
45
45
set -o $_Dbg_edit_style
46
46
Original file line number Diff line number Diff line change 1
1
set trace-commands on
2
+ set editing emacs
2
3
# Test to see that we read in files that mentioned in breakpoints
3
4
# but we don't step into.
4
5
step
Original file line number Diff line number Diff line change 1
1
(bug-loc.sh:5):
2
2
5: [31mdirname[39;49;00m=[33m${[39;49;00m[31mBASH_SOURCE[39;49;00m%/*[33m}[39;49;00m[37m [39;49;00m[37m# equivalent to dirname($0)[39;49;00m
3
+ +set editing emacs
4
+ Editing of command lines as they are typed is on.
5
+ Edit style is emacs.
3
6
+# Test to see that we read in files that mentioned in breakpoints
4
7
+# but we don't step into.
5
8
+step
Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ set autolist -- Run list command is off.
86
86
set basename -- Set short filenames (the basename) in debug output is on.
87
87
set debug -- Set debugging the debugger is off.
88
88
set different -- Set to stop at a different line is different
89
- set editing -- Set editing of command lines as they are typed is on .
89
+ set editing -- Set editing of command lines as they are typed is off .
90
90
set filename-display-- absolute.
91
- set highlight -- Set syntax highlighting of source listings is on .
91
+ set highlight -- Set syntax highlighting of source listings is off .
92
92
set history -- Set record command history is off.
93
93
set linetrace -- Set tracing execution of lines before executed is off.
94
94
set listsize -- Set number of source lines bashdb will list by default.
Original file line number Diff line number Diff line change @@ -308,8 +308,7 @@ autolist : Auto run of 'list' command is off.
308
308
basename : Show short filenames (the basename) in is on.
309
309
debug : Allow debugging the debugger is off.
310
310
different : Stepping forces stopping at a new line is off.
311
- editing : Editing of command lines as they are typed is on.
312
- Edit style is emacs.
311
+ editing : Editing of command lines as they are typed is off.
313
312
filename-display: is basename.
314
313
highlight : Syntax highlight in source listings is off.
315
314
history --
You can’t perform that action at this time.
0 commit comments