├── .circleci └── config.yml ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── NEWS.md ├── README.md ├── THANKS ├── acinclude.m4 ├── admin └── how-to-make-a-release.md ├── autogen.sh ├── command ├── .gitignore ├── Makefile.am ├── action.sh ├── alias.sh ├── backtrace.sh ├── break.sh ├── complete.sh ├── condition.sh ├── continue.sh ├── debug.sh ├── delete.sh ├── disable.sh ├── display.sh ├── down.sh ├── edit.sh ├── enable.sh ├── eval.sh ├── examine.sh ├── export.sh ├── frame.sh ├── handle.sh ├── help.sh ├── info.sh ├── info_sub │ ├── .gitignore │ ├── Makefile.am │ ├── args.sh │ ├── breakpoints.sh │ ├── display.sh │ ├── files.sh │ ├── functions.sh │ ├── line.sh │ ├── program.sh │ ├── signals.sh │ ├── source.sh │ ├── stack.sh │ ├── variables.sh │ └── warranty.sh ├── kill.sh ├── list.sh ├── load.sh ├── next.sh ├── pwd.sh ├── quit.sh ├── return.sh ├── run.sh ├── set.sh ├── set_sub │ ├── .gitignore │ ├── Makefile.am │ ├── annotate.sh │ ├── args.sh │ ├── autoeval.sh │ ├── autolist.sh │ ├── basename.sh │ ├── confirm.sh │ ├── debug.sh │ ├── different.sh │ ├── editing.sh │ ├── filename-display.sh │ ├── highlight.sh │ ├── history.sh │ ├── linetrace.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── showcommand.sh │ ├── style.sh │ ├── trace-commands.sh │ └── width.sh ├── shell.sh ├── show.sh ├── show_sub │ ├── .gitignore │ ├── Makefile.am │ ├── alias.sh │ ├── annotate.sh │ ├── autoeval.sh │ ├── autolist.sh │ ├── basename.sh │ ├── commands.sh │ ├── confirm.sh │ ├── copying.sh │ ├── debug.sh │ ├── different.sh │ ├── editing.sh │ ├── filename-display.sh │ ├── highlight.sh │ ├── history.sh │ ├── linetrace.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── style.sh │ ├── warranty.sh │ └── width.sh ├── skip.sh ├── source.sh ├── stepping.sh ├── trace.sh ├── undisplay.sh └── up.sh ├── configure.ac ├── data ├── .gitignore ├── Makefile.am └── shell.sh ├── dbg-main.sh ├── dbg-opts.sh ├── dbg-pre.sh ├── dbg-trace.sh.in ├── doc ├── .gitignore ├── Makefile.am ├── toRsT.py └── zshdb-man.pod ├── docs ├── .gitignore ├── Makefile ├── commands.rst ├── commands │ ├── Makefile │ ├── breakpoints.rst │ ├── breakpoints │ │ ├── Makefile │ │ ├── break.rst │ │ ├── condition.rst │ │ ├── delete.rst │ │ ├── disable.rst │ │ ├── enable.rst │ │ └── tbreak.rst │ ├── data.rst │ ├── data │ │ ├── display.rst │ │ ├── eval.rst │ │ ├── examine.rst │ │ ├── load.rst │ │ └── undisplay.rst │ ├── files.rst │ ├── files │ │ ├── edit.rst │ │ └── list.rst │ ├── info.rst │ ├── info │ │ ├── Makefile │ │ ├── breakpoints.rst │ │ ├── display.rst │ │ ├── files.rst │ │ ├── functions.rst │ │ ├── line.rst │ │ ├── program.rst │ │ ├── source.rst │ │ ├── stack.rst │ │ └── variables.rst │ ├── running.rst │ ├── running │ │ ├── continue.rst │ │ ├── debug.rst │ │ ├── kill.rst │ │ ├── next.rst │ │ ├── quit.rst │ │ ├── run.rst │ │ ├── skip.rst │ │ └── step.rst │ ├── set.rst │ ├── set │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── confirm.rst │ │ ├── debug.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── filename-display.rst │ │ ├── highlight.rst │ │ ├── linetrace.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ ├── trace-commands.rst │ │ └── width.rst │ ├── show.rst │ ├── show │ │ ├── Makefile │ │ ├── aliases.rst │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── confirm.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── filename-display.rst │ │ ├── highlight.rst │ │ ├── linetrace.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ ├── trace-commands.rst │ │ └── width.rst │ ├── stack.rst │ ├── stack │ │ ├── backtrace.rst │ │ ├── down.rst │ │ ├── frame.rst │ │ └── up.rst │ ├── support.rst │ └── support │ │ ├── alias.rst │ │ ├── help.rst │ │ ├── source.rst │ │ └── unalias.rst ├── conf.py ├── entry-exit.rst ├── features.rst ├── index.rst ├── install.rst ├── make.bat ├── manpage.rst ├── syntax.rst └── syntax │ ├── command.rst │ └── suffixes.rst ├── getopts_long.sh ├── lib ├── .gitignore ├── Makefile.am ├── action.sh ├── alias.sh ├── break.sh ├── columnize.sh ├── complete.sh ├── dbg-call.sh ├── display.sh ├── file.sh ├── filecache.sh ├── fns.sh ├── frame.sh ├── gdb.sh ├── help.sh ├── hist.sh ├── hook.sh ├── info-help.sh ├── journal.sh ├── list.sh ├── msg.sh ├── processor.sh ├── run.sh ├── save-restore.sh ├── set-d-vars.sh ├── setshow.sh ├── shell.sh ├── sig.sh ├── sort.sh ├── term-highlight.py ├── tox.ini ├── tty.sh ├── validate.sh └── zterm-background.sh ├── make-check-filter.rb ├── test-driver ├── test ├── .gitignore ├── Makefile.am ├── README.md ├── data │ ├── .gitignore │ ├── Makefile.am │ ├── action.cmd │ ├── action.right │ ├── brkpt1.cmd │ ├── brkpt1.right │ ├── bug-args.cmd │ ├── bug-args.right │ ├── bug-delete.cmd │ ├── bug-delete.right │ ├── bug-errexit.cmd │ ├── bug-errexit.right │ ├── bug-ksharrays.cmd │ ├── bug-ksharrays.right │ ├── bug-step-subshell.cmd │ ├── bug-step-subshell.right │ ├── bugIFS.cmd │ ├── bugIFS.right │ ├── bugIFS2.cmd │ ├── bugIFS2.right │ ├── condition.cmd │ ├── condition.right │ ├── debug.cmd │ ├── debug.right │ ├── debug2.cmd │ ├── delete.cmd │ ├── delete.right │ ├── display.cmd │ ├── display.right │ ├── enable.cmd │ ├── enable.right │ ├── examine-5.4.1.right │ ├── examine.cmd │ ├── examine.right │ ├── export-5.4.1.right │ ├── export.cmd │ ├── export.right │ ├── file with spaces.cmd │ ├── file with spaces.right │ ├── frame-5.8.1.right │ ├── frame.cmd │ ├── frame.right │ ├── list.cmd │ ├── list.right │ ├── lopts.right │ ├── multi1.cmd │ ├── multi1.right │ ├── multi2.cmd │ ├── multi2.right │ ├── multi3.cmd │ ├── multi3.right │ ├── multi4.right │ ├── next.cmd │ ├── next.right │ ├── quit.cmd │ ├── restart.cmd │ ├── restart.right │ ├── restart2.cmd │ ├── setshow-5.4.1.right │ ├── setshow.cmd │ ├── setshow.right │ ├── settrace.cmd │ ├── settrace.right │ ├── skip.cmd │ ├── skip.right │ ├── sopts.right │ ├── step.cmd │ ├── step.right │ ├── subshell-5.4.1.right │ ├── subshell.cmd │ ├── subshell.right │ ├── tbreak.cmd │ └── tbreak.right ├── example │ ├── .gitignore │ ├── Makefile.am │ ├── bug-args.sh │ ├── bug-args.sh.in │ ├── bug-delete.sh │ ├── bug-errexit.sh │ ├── bug-ksharrays.sh │ ├── bug-step-subshell.sh │ ├── bugIFS.sh │ ├── bugIFS2.sh │ ├── dbg-test1.sh │ ├── dbg-test1.sub │ ├── dbg-test2.sh │ ├── debug.sh │ ├── dir with spaces │ │ └── bug.sh │ ├── exam.sh │ ├── file with spaces.sh │ ├── gcd.sh │ ├── hanoi.sh.in │ ├── multi.sh │ ├── nexting.sh │ ├── restart.sh.in │ ├── settrace.sh │ ├── skip.sh.in │ ├── stepping.sh │ └── subshell.sh ├── integration │ ├── .gitignore │ ├── Makefile.am │ ├── README.md │ ├── check-common.sh.in │ ├── lopts.tests │ ├── sopts.tests │ ├── test-action.in │ ├── test-brkpt1.in │ ├── test-bug-args.in │ ├── test-bug-delete.in │ ├── test-bug-errexit.in │ ├── test-bug-ksharrays.in │ ├── test-bug-step-subshell.in │ ├── test-bugIFS.in │ ├── test-bugIFS2.in │ ├── test-condition.in │ ├── test-debug.in │ ├── test-delete.in │ ├── test-display.in │ ├── test-enable.in │ ├── test-examine.in │ ├── test-export.in │ ├── test-file-with-spaces.in │ ├── test-frame.in │ ├── test-list.in │ ├── test-multi.in │ ├── test-next.in │ ├── test-opts.in │ ├── test-restart.in │ ├── test-setshow.in │ ├── test-skip.in │ ├── test-step.in │ ├── test-subshell.in │ └── test-tbreak.in ├── unit │ ├── .gitignore │ ├── Makefile.am │ ├── helper.sh │ ├── shunit2 │ ├── test-action.sh.in │ ├── test-alias.sh.in │ ├── test-break.sh.in │ ├── test-cmd-complete.sh.in │ ├── test-cmd-info-variables.sh.in │ ├── test-columns.sh.in │ ├── test-dbg-opts.sh.in │ ├── test-examine.sh.in │ ├── test-file.sh.in │ ├── test-filecache.sh.in │ ├── test-fns.sh.in │ ├── test-frame.sh.in │ ├── test-get-sourceline.sh.in │ ├── test-journal.sh.in │ ├── test-lib-eval.sh.in │ ├── test-lib-maxline.sh.in │ ├── test-lib-shell.sh.in │ ├── test-msg.sh.in │ ├── test-pre.sh.in │ ├── test-run.sh.in │ ├── test-save-restore.sh.in │ ├── test-setshow.sh.in │ ├── test-sort.sh.in │ ├── test-tty.sh.in │ └── test-validate.sh.in └── zsh │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── ok4zshdb.sh │ ├── ok4zshdb1.sh │ ├── ok4zshdb2.sh │ ├── ok4zshdb3.sh │ └── trap-bug1.sh ├── testing.sh └── zshdb.in /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | NEWS.md -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/THANKS -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /admin/how-to-make-a-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/admin/how-to-make-a-release.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/autogen.sh -------------------------------------------------------------------------------- /command/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/.gitignore -------------------------------------------------------------------------------- /command/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/Makefile.am -------------------------------------------------------------------------------- /command/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/action.sh -------------------------------------------------------------------------------- /command/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/alias.sh -------------------------------------------------------------------------------- /command/backtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/backtrace.sh -------------------------------------------------------------------------------- /command/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/break.sh -------------------------------------------------------------------------------- /command/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/complete.sh -------------------------------------------------------------------------------- /command/condition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/condition.sh -------------------------------------------------------------------------------- /command/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/continue.sh -------------------------------------------------------------------------------- /command/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/debug.sh -------------------------------------------------------------------------------- /command/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/delete.sh -------------------------------------------------------------------------------- /command/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/disable.sh -------------------------------------------------------------------------------- /command/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/display.sh -------------------------------------------------------------------------------- /command/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/down.sh -------------------------------------------------------------------------------- /command/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/edit.sh -------------------------------------------------------------------------------- /command/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/enable.sh -------------------------------------------------------------------------------- /command/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/eval.sh -------------------------------------------------------------------------------- /command/examine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/examine.sh -------------------------------------------------------------------------------- /command/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/export.sh -------------------------------------------------------------------------------- /command/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/frame.sh -------------------------------------------------------------------------------- /command/handle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/handle.sh -------------------------------------------------------------------------------- /command/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/help.sh -------------------------------------------------------------------------------- /command/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info.sh -------------------------------------------------------------------------------- /command/info_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/.gitignore -------------------------------------------------------------------------------- /command/info_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/Makefile.am -------------------------------------------------------------------------------- /command/info_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/args.sh -------------------------------------------------------------------------------- /command/info_sub/breakpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/breakpoints.sh -------------------------------------------------------------------------------- /command/info_sub/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/display.sh -------------------------------------------------------------------------------- /command/info_sub/files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/files.sh -------------------------------------------------------------------------------- /command/info_sub/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/functions.sh -------------------------------------------------------------------------------- /command/info_sub/line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/line.sh -------------------------------------------------------------------------------- /command/info_sub/program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/program.sh -------------------------------------------------------------------------------- /command/info_sub/signals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/signals.sh -------------------------------------------------------------------------------- /command/info_sub/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/source.sh -------------------------------------------------------------------------------- /command/info_sub/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/stack.sh -------------------------------------------------------------------------------- /command/info_sub/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/variables.sh -------------------------------------------------------------------------------- /command/info_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/info_sub/warranty.sh -------------------------------------------------------------------------------- /command/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/kill.sh -------------------------------------------------------------------------------- /command/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/list.sh -------------------------------------------------------------------------------- /command/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/load.sh -------------------------------------------------------------------------------- /command/next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/next.sh -------------------------------------------------------------------------------- /command/pwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/pwd.sh -------------------------------------------------------------------------------- /command/quit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/quit.sh -------------------------------------------------------------------------------- /command/return.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/return.sh -------------------------------------------------------------------------------- /command/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/run.sh -------------------------------------------------------------------------------- /command/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set.sh -------------------------------------------------------------------------------- /command/set_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/.gitignore -------------------------------------------------------------------------------- /command/set_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/Makefile.am -------------------------------------------------------------------------------- /command/set_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/annotate.sh -------------------------------------------------------------------------------- /command/set_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/args.sh -------------------------------------------------------------------------------- /command/set_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/autoeval.sh -------------------------------------------------------------------------------- /command/set_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/autolist.sh -------------------------------------------------------------------------------- /command/set_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/basename.sh -------------------------------------------------------------------------------- /command/set_sub/confirm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/confirm.sh -------------------------------------------------------------------------------- /command/set_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/debug.sh -------------------------------------------------------------------------------- /command/set_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/different.sh -------------------------------------------------------------------------------- /command/set_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/editing.sh -------------------------------------------------------------------------------- /command/set_sub/filename-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/filename-display.sh -------------------------------------------------------------------------------- /command/set_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/highlight.sh -------------------------------------------------------------------------------- /command/set_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/history.sh -------------------------------------------------------------------------------- /command/set_sub/linetrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/linetrace.sh -------------------------------------------------------------------------------- /command/set_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/listsize.sh -------------------------------------------------------------------------------- /command/set_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/prompt.sh -------------------------------------------------------------------------------- /command/set_sub/showcommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/showcommand.sh -------------------------------------------------------------------------------- /command/set_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/style.sh -------------------------------------------------------------------------------- /command/set_sub/trace-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/trace-commands.sh -------------------------------------------------------------------------------- /command/set_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/set_sub/width.sh -------------------------------------------------------------------------------- /command/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/shell.sh -------------------------------------------------------------------------------- /command/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show.sh -------------------------------------------------------------------------------- /command/show_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/.gitignore -------------------------------------------------------------------------------- /command/show_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/Makefile.am -------------------------------------------------------------------------------- /command/show_sub/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/alias.sh -------------------------------------------------------------------------------- /command/show_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/annotate.sh -------------------------------------------------------------------------------- /command/show_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/autoeval.sh -------------------------------------------------------------------------------- /command/show_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/autolist.sh -------------------------------------------------------------------------------- /command/show_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/basename.sh -------------------------------------------------------------------------------- /command/show_sub/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/commands.sh -------------------------------------------------------------------------------- /command/show_sub/confirm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/confirm.sh -------------------------------------------------------------------------------- /command/show_sub/copying.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/copying.sh -------------------------------------------------------------------------------- /command/show_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/debug.sh -------------------------------------------------------------------------------- /command/show_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/different.sh -------------------------------------------------------------------------------- /command/show_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/editing.sh -------------------------------------------------------------------------------- /command/show_sub/filename-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/filename-display.sh -------------------------------------------------------------------------------- /command/show_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/highlight.sh -------------------------------------------------------------------------------- /command/show_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/history.sh -------------------------------------------------------------------------------- /command/show_sub/linetrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/linetrace.sh -------------------------------------------------------------------------------- /command/show_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/listsize.sh -------------------------------------------------------------------------------- /command/show_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/prompt.sh -------------------------------------------------------------------------------- /command/show_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/style.sh -------------------------------------------------------------------------------- /command/show_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/warranty.sh -------------------------------------------------------------------------------- /command/show_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/show_sub/width.sh -------------------------------------------------------------------------------- /command/skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/skip.sh -------------------------------------------------------------------------------- /command/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/source.sh -------------------------------------------------------------------------------- /command/stepping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/stepping.sh -------------------------------------------------------------------------------- /command/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/trace.sh -------------------------------------------------------------------------------- /command/undisplay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/undisplay.sh -------------------------------------------------------------------------------- /command/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/command/up.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/configure.ac -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/data/shell.sh -------------------------------------------------------------------------------- /dbg-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/dbg-main.sh -------------------------------------------------------------------------------- /dbg-opts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/dbg-opts.sh -------------------------------------------------------------------------------- /dbg-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/dbg-pre.sh -------------------------------------------------------------------------------- /dbg-trace.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/dbg-trace.sh.in -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/toRsT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/doc/toRsT.py -------------------------------------------------------------------------------- /doc/zshdb-man.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/doc/zshdb-man.pod -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /.python-version 3 | /_build 4 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/break.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/condition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/condition.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/delete.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/disable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/disable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/enable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/enable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/tbreak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/breakpoints/tbreak.rst -------------------------------------------------------------------------------- /docs/commands/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data.rst -------------------------------------------------------------------------------- /docs/commands/data/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data/display.rst -------------------------------------------------------------------------------- /docs/commands/data/eval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data/eval.rst -------------------------------------------------------------------------------- /docs/commands/data/examine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data/examine.rst -------------------------------------------------------------------------------- /docs/commands/data/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data/load.rst -------------------------------------------------------------------------------- /docs/commands/data/undisplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/data/undisplay.rst -------------------------------------------------------------------------------- /docs/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/files.rst -------------------------------------------------------------------------------- /docs/commands/files/edit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/files/edit.rst -------------------------------------------------------------------------------- /docs/commands/files/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/files/list.rst -------------------------------------------------------------------------------- /docs/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info.rst -------------------------------------------------------------------------------- /docs/commands/info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/Makefile -------------------------------------------------------------------------------- /docs/commands/info/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/info/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/display.rst -------------------------------------------------------------------------------- /docs/commands/info/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/files.rst -------------------------------------------------------------------------------- /docs/commands/info/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/functions.rst -------------------------------------------------------------------------------- /docs/commands/info/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/line.rst -------------------------------------------------------------------------------- /docs/commands/info/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/program.rst -------------------------------------------------------------------------------- /docs/commands/info/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/source.rst -------------------------------------------------------------------------------- /docs/commands/info/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/stack.rst -------------------------------------------------------------------------------- /docs/commands/info/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/info/variables.rst -------------------------------------------------------------------------------- /docs/commands/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running.rst -------------------------------------------------------------------------------- /docs/commands/running/continue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/continue.rst -------------------------------------------------------------------------------- /docs/commands/running/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/debug.rst -------------------------------------------------------------------------------- /docs/commands/running/kill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/kill.rst -------------------------------------------------------------------------------- /docs/commands/running/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/next.rst -------------------------------------------------------------------------------- /docs/commands/running/quit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/quit.rst -------------------------------------------------------------------------------- /docs/commands/running/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/run.rst -------------------------------------------------------------------------------- /docs/commands/running/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/skip.rst -------------------------------------------------------------------------------- /docs/commands/running/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/running/step.rst -------------------------------------------------------------------------------- /docs/commands/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set.rst -------------------------------------------------------------------------------- /docs/commands/set/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/annotate.rst -------------------------------------------------------------------------------- /docs/commands/set/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/args.rst -------------------------------------------------------------------------------- /docs/commands/set/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/set/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/autolist.rst -------------------------------------------------------------------------------- /docs/commands/set/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/basename.rst -------------------------------------------------------------------------------- /docs/commands/set/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/confirm.rst -------------------------------------------------------------------------------- /docs/commands/set/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/debug.rst -------------------------------------------------------------------------------- /docs/commands/set/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/different.rst -------------------------------------------------------------------------------- /docs/commands/set/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/editing.rst -------------------------------------------------------------------------------- /docs/commands/set/filename-display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/filename-display.rst -------------------------------------------------------------------------------- /docs/commands/set/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/highlight.rst -------------------------------------------------------------------------------- /docs/commands/set/linetrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/linetrace.rst -------------------------------------------------------------------------------- /docs/commands/set/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/listsize.rst -------------------------------------------------------------------------------- /docs/commands/set/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/style.rst -------------------------------------------------------------------------------- /docs/commands/set/trace-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/trace-commands.rst -------------------------------------------------------------------------------- /docs/commands/set/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/set/width.rst -------------------------------------------------------------------------------- /docs/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show.rst -------------------------------------------------------------------------------- /docs/commands/show/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/Makefile -------------------------------------------------------------------------------- /docs/commands/show/aliases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/aliases.rst -------------------------------------------------------------------------------- /docs/commands/show/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/annotate.rst -------------------------------------------------------------------------------- /docs/commands/show/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/args.rst -------------------------------------------------------------------------------- /docs/commands/show/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/show/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/autolist.rst -------------------------------------------------------------------------------- /docs/commands/show/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/basename.rst -------------------------------------------------------------------------------- /docs/commands/show/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/confirm.rst -------------------------------------------------------------------------------- /docs/commands/show/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/different.rst -------------------------------------------------------------------------------- /docs/commands/show/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/editing.rst -------------------------------------------------------------------------------- /docs/commands/show/filename-display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/filename-display.rst -------------------------------------------------------------------------------- /docs/commands/show/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/highlight.rst -------------------------------------------------------------------------------- /docs/commands/show/linetrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/linetrace.rst -------------------------------------------------------------------------------- /docs/commands/show/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/listsize.rst -------------------------------------------------------------------------------- /docs/commands/show/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/style.rst -------------------------------------------------------------------------------- /docs/commands/show/trace-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/trace-commands.rst -------------------------------------------------------------------------------- /docs/commands/show/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/show/width.rst -------------------------------------------------------------------------------- /docs/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/stack.rst -------------------------------------------------------------------------------- /docs/commands/stack/backtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/stack/backtrace.rst -------------------------------------------------------------------------------- /docs/commands/stack/down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/stack/down.rst -------------------------------------------------------------------------------- /docs/commands/stack/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/stack/frame.rst -------------------------------------------------------------------------------- /docs/commands/stack/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/stack/up.rst -------------------------------------------------------------------------------- /docs/commands/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/support.rst -------------------------------------------------------------------------------- /docs/commands/support/alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/support/alias.rst -------------------------------------------------------------------------------- /docs/commands/support/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/support/help.rst -------------------------------------------------------------------------------- /docs/commands/support/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/support/source.rst -------------------------------------------------------------------------------- /docs/commands/support/unalias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/commands/support/unalias.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/entry-exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/entry-exit.rst -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/manpage.rst -------------------------------------------------------------------------------- /docs/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/syntax.rst -------------------------------------------------------------------------------- /docs/syntax/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/syntax/command.rst -------------------------------------------------------------------------------- /docs/syntax/suffixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/docs/syntax/suffixes.rst -------------------------------------------------------------------------------- /getopts_long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/getopts_long.sh -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/action.sh -------------------------------------------------------------------------------- /lib/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/alias.sh -------------------------------------------------------------------------------- /lib/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/break.sh -------------------------------------------------------------------------------- /lib/columnize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/columnize.sh -------------------------------------------------------------------------------- /lib/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/complete.sh -------------------------------------------------------------------------------- /lib/dbg-call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/dbg-call.sh -------------------------------------------------------------------------------- /lib/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/display.sh -------------------------------------------------------------------------------- /lib/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/file.sh -------------------------------------------------------------------------------- /lib/filecache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/filecache.sh -------------------------------------------------------------------------------- /lib/fns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/fns.sh -------------------------------------------------------------------------------- /lib/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/frame.sh -------------------------------------------------------------------------------- /lib/gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/gdb.sh -------------------------------------------------------------------------------- /lib/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/help.sh -------------------------------------------------------------------------------- /lib/hist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/hist.sh -------------------------------------------------------------------------------- /lib/hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/hook.sh -------------------------------------------------------------------------------- /lib/info-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/info-help.sh -------------------------------------------------------------------------------- /lib/journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/journal.sh -------------------------------------------------------------------------------- /lib/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/list.sh -------------------------------------------------------------------------------- /lib/msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/msg.sh -------------------------------------------------------------------------------- /lib/processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/processor.sh -------------------------------------------------------------------------------- /lib/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/run.sh -------------------------------------------------------------------------------- /lib/save-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/save-restore.sh -------------------------------------------------------------------------------- /lib/set-d-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/set-d-vars.sh -------------------------------------------------------------------------------- /lib/setshow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/setshow.sh -------------------------------------------------------------------------------- /lib/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/shell.sh -------------------------------------------------------------------------------- /lib/sig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/sig.sh -------------------------------------------------------------------------------- /lib/sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/sort.sh -------------------------------------------------------------------------------- /lib/term-highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/term-highlight.py -------------------------------------------------------------------------------- /lib/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/tox.ini -------------------------------------------------------------------------------- /lib/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/tty.sh -------------------------------------------------------------------------------- /lib/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/validate.sh -------------------------------------------------------------------------------- /lib/zterm-background.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/lib/zterm-background.sh -------------------------------------------------------------------------------- /make-check-filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/make-check-filter.rb -------------------------------------------------------------------------------- /test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test-driver -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/.gitignore -------------------------------------------------------------------------------- /test/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/Makefile.am -------------------------------------------------------------------------------- /test/data/action.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/action.cmd -------------------------------------------------------------------------------- /test/data/action.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/action.right -------------------------------------------------------------------------------- /test/data/brkpt1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/brkpt1.cmd -------------------------------------------------------------------------------- /test/data/brkpt1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/brkpt1.right -------------------------------------------------------------------------------- /test/data/bug-args.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-args.cmd -------------------------------------------------------------------------------- /test/data/bug-args.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-args.right -------------------------------------------------------------------------------- /test/data/bug-delete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-delete.cmd -------------------------------------------------------------------------------- /test/data/bug-delete.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-delete.right -------------------------------------------------------------------------------- /test/data/bug-errexit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-errexit.cmd -------------------------------------------------------------------------------- /test/data/bug-errexit.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-errexit.right -------------------------------------------------------------------------------- /test/data/bug-ksharrays.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-ksharrays.cmd -------------------------------------------------------------------------------- /test/data/bug-ksharrays.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-ksharrays.right -------------------------------------------------------------------------------- /test/data/bug-step-subshell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-step-subshell.cmd -------------------------------------------------------------------------------- /test/data/bug-step-subshell.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bug-step-subshell.right -------------------------------------------------------------------------------- /test/data/bugIFS.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bugIFS.cmd -------------------------------------------------------------------------------- /test/data/bugIFS.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bugIFS.right -------------------------------------------------------------------------------- /test/data/bugIFS2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bugIFS2.cmd -------------------------------------------------------------------------------- /test/data/bugIFS2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/bugIFS2.right -------------------------------------------------------------------------------- /test/data/condition.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/condition.cmd -------------------------------------------------------------------------------- /test/data/condition.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/condition.right -------------------------------------------------------------------------------- /test/data/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/debug.cmd -------------------------------------------------------------------------------- /test/data/debug.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/debug.right -------------------------------------------------------------------------------- /test/data/debug2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/debug2.cmd -------------------------------------------------------------------------------- /test/data/delete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/delete.cmd -------------------------------------------------------------------------------- /test/data/delete.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/delete.right -------------------------------------------------------------------------------- /test/data/display.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/display.cmd -------------------------------------------------------------------------------- /test/data/display.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/display.right -------------------------------------------------------------------------------- /test/data/enable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/enable.cmd -------------------------------------------------------------------------------- /test/data/enable.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/enable.right -------------------------------------------------------------------------------- /test/data/examine-5.4.1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/examine-5.4.1.right -------------------------------------------------------------------------------- /test/data/examine.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/examine.cmd -------------------------------------------------------------------------------- /test/data/examine.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/examine.right -------------------------------------------------------------------------------- /test/data/export-5.4.1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/export-5.4.1.right -------------------------------------------------------------------------------- /test/data/export.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/export.cmd -------------------------------------------------------------------------------- /test/data/export.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/export.right -------------------------------------------------------------------------------- /test/data/file with spaces.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/file with spaces.cmd -------------------------------------------------------------------------------- /test/data/file with spaces.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/file with spaces.right -------------------------------------------------------------------------------- /test/data/frame-5.8.1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/frame-5.8.1.right -------------------------------------------------------------------------------- /test/data/frame.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/frame.cmd -------------------------------------------------------------------------------- /test/data/frame.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/frame.right -------------------------------------------------------------------------------- /test/data/list.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/list.cmd -------------------------------------------------------------------------------- /test/data/list.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/list.right -------------------------------------------------------------------------------- /test/data/lopts.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/lopts.right -------------------------------------------------------------------------------- /test/data/multi1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi1.cmd -------------------------------------------------------------------------------- /test/data/multi1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi1.right -------------------------------------------------------------------------------- /test/data/multi2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi2.cmd -------------------------------------------------------------------------------- /test/data/multi2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi2.right -------------------------------------------------------------------------------- /test/data/multi3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi3.cmd -------------------------------------------------------------------------------- /test/data/multi3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi3.right -------------------------------------------------------------------------------- /test/data/multi4.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/multi4.right -------------------------------------------------------------------------------- /test/data/next.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/next.cmd -------------------------------------------------------------------------------- /test/data/next.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/next.right -------------------------------------------------------------------------------- /test/data/quit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/quit.cmd -------------------------------------------------------------------------------- /test/data/restart.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/restart.cmd -------------------------------------------------------------------------------- /test/data/restart.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/restart.right -------------------------------------------------------------------------------- /test/data/restart2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/restart2.cmd -------------------------------------------------------------------------------- /test/data/setshow-5.4.1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/setshow-5.4.1.right -------------------------------------------------------------------------------- /test/data/setshow.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/setshow.cmd -------------------------------------------------------------------------------- /test/data/setshow.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/setshow.right -------------------------------------------------------------------------------- /test/data/settrace.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/settrace.cmd -------------------------------------------------------------------------------- /test/data/settrace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/settrace.right -------------------------------------------------------------------------------- /test/data/skip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/skip.cmd -------------------------------------------------------------------------------- /test/data/skip.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/skip.right -------------------------------------------------------------------------------- /test/data/sopts.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/sopts.right -------------------------------------------------------------------------------- /test/data/step.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/step.cmd -------------------------------------------------------------------------------- /test/data/step.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/step.right -------------------------------------------------------------------------------- /test/data/subshell-5.4.1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/subshell-5.4.1.right -------------------------------------------------------------------------------- /test/data/subshell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/subshell.cmd -------------------------------------------------------------------------------- /test/data/subshell.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/subshell.right -------------------------------------------------------------------------------- /test/data/tbreak.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/tbreak.cmd -------------------------------------------------------------------------------- /test/data/tbreak.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/data/tbreak.right -------------------------------------------------------------------------------- /test/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/.gitignore -------------------------------------------------------------------------------- /test/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/Makefile.am -------------------------------------------------------------------------------- /test/example/bug-args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-args.sh -------------------------------------------------------------------------------- /test/example/bug-args.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-args.sh.in -------------------------------------------------------------------------------- /test/example/bug-delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-delete.sh -------------------------------------------------------------------------------- /test/example/bug-errexit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-errexit.sh -------------------------------------------------------------------------------- /test/example/bug-ksharrays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-ksharrays.sh -------------------------------------------------------------------------------- /test/example/bug-step-subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bug-step-subshell.sh -------------------------------------------------------------------------------- /test/example/bugIFS.sh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | IFS="." 3 | PS4='foo' 4 | exit 0 5 | -------------------------------------------------------------------------------- /test/example/bugIFS2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/bugIFS2.sh -------------------------------------------------------------------------------- /test/example/dbg-test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/dbg-test1.sh -------------------------------------------------------------------------------- /test/example/dbg-test1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/dbg-test1.sub -------------------------------------------------------------------------------- /test/example/dbg-test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/dbg-test2.sh -------------------------------------------------------------------------------- /test/example/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/debug.sh -------------------------------------------------------------------------------- /test/example/dir with spaces/bug.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/exam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/exam.sh -------------------------------------------------------------------------------- /test/example/file with spaces.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/gcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/gcd.sh -------------------------------------------------------------------------------- /test/example/hanoi.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/hanoi.sh.in -------------------------------------------------------------------------------- /test/example/multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/multi.sh -------------------------------------------------------------------------------- /test/example/nexting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/nexting.sh -------------------------------------------------------------------------------- /test/example/restart.sh.in: -------------------------------------------------------------------------------- 1 | #!@SH_PROG@ 2 | # For testing restart. 3 | 4 | x=1 5 | cd / 6 | y=2 7 | z=0 8 | -------------------------------------------------------------------------------- /test/example/settrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/settrace.sh -------------------------------------------------------------------------------- /test/example/skip.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/skip.sh.in -------------------------------------------------------------------------------- /test/example/stepping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/stepping.sh -------------------------------------------------------------------------------- /test/example/subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/example/subshell.sh -------------------------------------------------------------------------------- /test/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/.gitignore -------------------------------------------------------------------------------- /test/integration/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/Makefile.am -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/check-common.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/check-common.sh.in -------------------------------------------------------------------------------- /test/integration/lopts.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/lopts.tests -------------------------------------------------------------------------------- /test/integration/sopts.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/sopts.tests -------------------------------------------------------------------------------- /test/integration/test-action.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-action.in -------------------------------------------------------------------------------- /test/integration/test-brkpt1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-brkpt1.in -------------------------------------------------------------------------------- /test/integration/test-bug-args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bug-args.in -------------------------------------------------------------------------------- /test/integration/test-bug-delete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bug-delete.in -------------------------------------------------------------------------------- /test/integration/test-bug-errexit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bug-errexit.in -------------------------------------------------------------------------------- /test/integration/test-bug-ksharrays.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bug-ksharrays.in -------------------------------------------------------------------------------- /test/integration/test-bug-step-subshell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bug-step-subshell.in -------------------------------------------------------------------------------- /test/integration/test-bugIFS.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bugIFS.in -------------------------------------------------------------------------------- /test/integration/test-bugIFS2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-bugIFS2.in -------------------------------------------------------------------------------- /test/integration/test-condition.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-condition.in -------------------------------------------------------------------------------- /test/integration/test-debug.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-debug.in -------------------------------------------------------------------------------- /test/integration/test-delete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-delete.in -------------------------------------------------------------------------------- /test/integration/test-display.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-display.in -------------------------------------------------------------------------------- /test/integration/test-enable.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-enable.in -------------------------------------------------------------------------------- /test/integration/test-examine.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-examine.in -------------------------------------------------------------------------------- /test/integration/test-export.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-export.in -------------------------------------------------------------------------------- /test/integration/test-file-with-spaces.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-file-with-spaces.in -------------------------------------------------------------------------------- /test/integration/test-frame.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-frame.in -------------------------------------------------------------------------------- /test/integration/test-list.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-list.in -------------------------------------------------------------------------------- /test/integration/test-multi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-multi.in -------------------------------------------------------------------------------- /test/integration/test-next.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-next.in -------------------------------------------------------------------------------- /test/integration/test-opts.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-opts.in -------------------------------------------------------------------------------- /test/integration/test-restart.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-restart.in -------------------------------------------------------------------------------- /test/integration/test-setshow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-setshow.in -------------------------------------------------------------------------------- /test/integration/test-skip.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-skip.in -------------------------------------------------------------------------------- /test/integration/test-step.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-step.in -------------------------------------------------------------------------------- /test/integration/test-subshell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-subshell.in -------------------------------------------------------------------------------- /test/integration/test-tbreak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/integration/test-tbreak.in -------------------------------------------------------------------------------- /test/unit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/.gitignore -------------------------------------------------------------------------------- /test/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/Makefile.am -------------------------------------------------------------------------------- /test/unit/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/helper.sh -------------------------------------------------------------------------------- /test/unit/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/shunit2 -------------------------------------------------------------------------------- /test/unit/test-action.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-action.sh.in -------------------------------------------------------------------------------- /test/unit/test-alias.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-alias.sh.in -------------------------------------------------------------------------------- /test/unit/test-break.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-break.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-complete.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-cmd-complete.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-info-variables.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-cmd-info-variables.sh.in -------------------------------------------------------------------------------- /test/unit/test-columns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-columns.sh.in -------------------------------------------------------------------------------- /test/unit/test-dbg-opts.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-dbg-opts.sh.in -------------------------------------------------------------------------------- /test/unit/test-examine.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-examine.sh.in -------------------------------------------------------------------------------- /test/unit/test-file.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-file.sh.in -------------------------------------------------------------------------------- /test/unit/test-filecache.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-filecache.sh.in -------------------------------------------------------------------------------- /test/unit/test-fns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-fns.sh.in -------------------------------------------------------------------------------- /test/unit/test-frame.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-frame.sh.in -------------------------------------------------------------------------------- /test/unit/test-get-sourceline.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-get-sourceline.sh.in -------------------------------------------------------------------------------- /test/unit/test-journal.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-journal.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-eval.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-lib-eval.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-maxline.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-lib-maxline.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-shell.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-lib-shell.sh.in -------------------------------------------------------------------------------- /test/unit/test-msg.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-msg.sh.in -------------------------------------------------------------------------------- /test/unit/test-pre.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-pre.sh.in -------------------------------------------------------------------------------- /test/unit/test-run.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-run.sh.in -------------------------------------------------------------------------------- /test/unit/test-save-restore.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-save-restore.sh.in -------------------------------------------------------------------------------- /test/unit/test-setshow.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-setshow.sh.in -------------------------------------------------------------------------------- /test/unit/test-sort.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-sort.sh.in -------------------------------------------------------------------------------- /test/unit/test-tty.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-tty.sh.in -------------------------------------------------------------------------------- /test/unit/test-validate.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/unit/test-validate.sh.in -------------------------------------------------------------------------------- /test/zsh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/zsh/.gitignore -------------------------------------------------------------------------------- /test/zsh/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/zsh/Makefile.am -------------------------------------------------------------------------------- /test/zsh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/zsh/README -------------------------------------------------------------------------------- /test/zsh/ok4zshdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/zsh/ok4zshdb.sh -------------------------------------------------------------------------------- /test/zsh/ok4zshdb1.sh: -------------------------------------------------------------------------------- 1 | # 2nd part of is-dbg-ok. 2 | : 3 | exit 0 4 | -------------------------------------------------------------------------------- /test/zsh/ok4zshdb2.sh: -------------------------------------------------------------------------------- 1 | # 2nd part of is-ok-debug test 2 | : 3 | -------------------------------------------------------------------------------- /test/zsh/ok4zshdb3.sh: -------------------------------------------------------------------------------- 1 | # 3rd part of is-ok-debug test 2 | fc -l fdafdsa 2>/dev/null 3 | -------------------------------------------------------------------------------- /test/zsh/trap-bug1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/test/zsh/trap-bug1.sh -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/testing.sh -------------------------------------------------------------------------------- /zshdb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/zshdb/HEAD/zshdb.in --------------------------------------------------------------------------------