You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: addon/globalPlugins/debugHelper.py
+1-13Lines changed: 1 addition & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -14,18 +14,14 @@
14
14
15
15
# This add-on is intended to make debugging tasks easier for developers. If you make frequent use of the NVDA log, this may provide features that help you.
16
16
# Other things are planned, but currently the only implemented feature is:
17
-
# Press NVDA+shift+F1, to insert a sequentially numbered line in the log. (Can be remapped under Tools in Gesture Settings.)
17
+
# Press NVDA+shift+F1, to insert a sequentially numbered line in the log. (Can be remapped under Tools in Input Gesture settings.)
18
18
# This makes it easier to find where you were last, before or after you performed a certain action.
19
19
# The lines are modeled after the old Linux Syslog mark lines, and look like this:
20
20
# -- MARK 1 --
21
21
# They are currently logged at the info loglevel.
22
22
23
-
# See readme for release history, and git log for changes.
24
-
25
23
from __future__ importunicode_literals
26
24
fromglobalCommandsimportSCRCAT_TOOLS
27
-
# Disabled because of desired compatibility with 2017.3
28
-
#from scriptHandler import script
29
25
fromconfigobjimportConfigObj
30
26
importconfig
31
27
importglobalPluginHandler, globalVars
@@ -82,13 +78,6 @@ def terminate(self):
82
78
pass
83
79
84
80
# Script to insert a numbered mark line in the log, and announce the insertion and number to the user.
85
-
# Disabled because of desired compatibility with 2017.3
86
-
#@script(
87
-
#gesture="kb:nvda+shift+F1",
88
-
## Translators: input help message for a Debug Helper command
89
-
#description=_("Inserts a mark line in the log to aid in debugging"),
0 commit comments