diff options
author | 2021-10-18 08:22:21 +1100 | |
---|---|---|
committer | 2021-10-18 08:22:21 +1100 | |
commit | 40a30af10f05f6567f717e4d1004f7bae01b85a2 (patch) | |
tree | 13990300ff0940a5195192a6d76a55df58fa5c5a /docs/source/debugger/general.rst | |
parent | 0a82b82684115f7d5334e65cef8c4297a50c4e19 (diff) |
Still more user experience improvements:
Changed the default mapping for UI select to not trigger on Alt+Enter
fullscreen toggle. (Fullscreen toggle still doesn't work in menus -
actually fixing that is complicated.)
frontend: Made the about box wrap text properly, made the title and
backtrack menu item always visible, and added a footer with the VCS
revision.
frontend: Don't highlight the favourites and info toolbar buttons if
there's no selection (can happen if filters produce no results). Also
made the info viewer appear even if no info is available - it's less
confusing to see an empty menu than wonder why clicking the button does
nothing.
debugger: Added a register points view to the GUI debuggers, to go with
the breakpoints and watchpoints views.
debugger: Extended [brw]p(clear|(en|dis)able) commands to accept
multiple arguments to perform the same action on multiple
(break|watch|register)points at once. Also made rplist accept a CPU for
showing a single CPU's register points ([bw]plist already support this).
docs: Updated registerpoints debugger commands page, and updated other
pages for latest extensions to syntax.
Diffstat (limited to 'docs/source/debugger/general.rst')
-rw-r--r-- | docs/source/debugger/general.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/debugger/general.rst b/docs/source/debugger/general.rst index 9d7d206117e..4edc1b413fb 100644 --- a/docs/source/debugger/general.rst +++ b/docs/source/debugger/general.rst @@ -159,7 +159,7 @@ Back to :ref:`debugger-general-list` print ----- -**print <item>[,...]** +**print <item>[,…]** The **print** command prints the results of one or more expressions to the debugger console as hexadecimal numbers. @@ -180,7 +180,7 @@ Back to :ref:`debugger-general-list` printf ------ -**printf <format>[,<argument>[,...]]** +**printf <format>[,<argument>[,…]]** Prints a C-style formatted message to the debugger console. Only a very limited subset of format specifiers and escape sequences are @@ -223,7 +223,7 @@ Back to :ref:`debugger-general-list` logerror -------- -**logerror <format>[,<argument>[,...]]** +**logerror <format>[,<argument>[,…]]** Prints a C-style formatted message to the error log. See :ref:`debugger-command-printf` for details about the limited set of @@ -246,7 +246,7 @@ Back to :ref:`debugger-general-list` tracelog -------- -**tracelog <format>[,<argument>[,...]]** +**tracelog <format>[,<argument>[,…]]** Prints a C-style formatted message to the currently open trace file (see :ref:`debugger-command-trace` for more information). If no trace file @@ -272,7 +272,7 @@ Back to :ref:`debugger-general-list` tracesym -------- -**tracesym <item>[,...]** +**tracesym <item>[,…]** Prints the specified symbols to the currently open trace file (see :ref:`debugger-command-trace` for more information). If no trace file |