| 1 | #Default laptop keyboard layout for NVDA
|
|---|
| 2 | #A part of NonVisual Desktop Access (NVDA)
|
|---|
| 3 | # Set Capslock key as modifier for best results.
|
|---|
| 4 |
|
|---|
| 5 | #Format is key=script
|
|---|
| 6 | #where key is a combination of optional modifier keys, plus one normal key, all joined by a + (plus) symbol.
|
|---|
| 7 | #and script is the name of an instance method from this module's appModule class (with the 'script_' removed)
|
|---|
| 8 |
|
|---|
| 9 | # misc keys
|
|---|
| 10 | NVDA+1=keyboardHelp
|
|---|
| 11 | NVDA+2=toggleSpeakTypedCharacters
|
|---|
| 12 | NVDA+3=toggleSpeakTypedWords
|
|---|
| 13 | NVDA+4=toggleSpeakCommandKeys
|
|---|
| 14 | NVDA+5=toggleReportDynamicContentChanges
|
|---|
| 15 | NVDA+t=title
|
|---|
| 16 | NVDA+p=toggleSpeakPunctuation
|
|---|
| 17 | NVDA+b=speakForeground
|
|---|
| 18 | NVDA+n=showGui
|
|---|
| 19 | NVDA+q=quit
|
|---|
| 20 | NVDA+s=speechMode
|
|---|
| 21 | NVDA+F12=dateTime
|
|---|
| 22 | NVDA+space=toggleVirtualBufferPassThrough
|
|---|
| 23 | NVDA+Tab=reportCurrentFocus
|
|---|
| 24 | NVDA+f=reportFormatting
|
|---|
| 25 | Shift+NVDA+m=toggleMouseTracking
|
|---|
| 26 | NVDA+f1=navigatorObject_devInfo
|
|---|
| 27 | NVDA+f2=passNextKeyThrough
|
|---|
| 28 | Control+NVDA+f1=reportAppModuleInfo
|
|---|
| 29 | Control+NVDA+f2=toggleProgressBarOutput
|
|---|
| 30 | NVDA+shift+b=say_battery_status
|
|---|
| 31 | Shift+NVDA+ExtendedUp=reportCurrentSelection
|
|---|
| 32 | NVDA+ExtendedUp=reportCurrentLine
|
|---|
| 33 | NVDA+a=sayAll
|
|---|
| 34 | NVDA+extendedDown=sayAll
|
|---|
| 35 | NVDA+extendedEnd=reportStatusLine
|
|---|
| 36 | Control+NVDA+ExtendedLeft=previousSynthSetting
|
|---|
| 37 | Control+NVDA+ExtendedRight=nextSynthSetting
|
|---|
| 38 | Control+NVDA+ExtendedUp=increaseSynthSetting
|
|---|
| 39 | Control+NVDA+ExtendedDown=decreaseSynthSetting
|
|---|
| 40 | NVDA+control+t=braille_toggleTether
|
|---|
| 41 |
|
|---|
| 42 | # focused object review keys
|
|---|
| 43 | NVDA+m=review_previousCharacter
|
|---|
| 44 | end=review_previousCharacter
|
|---|
| 45 | NVDA+,=review_currentCharacter
|
|---|
| 46 | down=review_currentCharacter
|
|---|
| 47 | NVDA+.=review_nextCharacter
|
|---|
| 48 | next=review_nextCharacter
|
|---|
| 49 | NVDA+j=review_previousWord
|
|---|
| 50 | left=review_previousWord
|
|---|
| 51 | NVDA+k=review_currentWord
|
|---|
| 52 | clear=review_currentWord
|
|---|
| 53 | NVDA+l=review_nextWord
|
|---|
| 54 | right=review_nextWord
|
|---|
| 55 | NVDA+u=review_previousLine
|
|---|
| 56 | home=review_previousLine
|
|---|
| 57 | shift+NVDA+u=review_startOfLine
|
|---|
| 58 | shift+end=review_startOfLine
|
|---|
| 59 | NVDA+i=review_currentLine
|
|---|
| 60 | up=review_currentLine
|
|---|
| 61 | NVDA+o=review_nextLine
|
|---|
| 62 | prior=review_nextLine
|
|---|
| 63 | shift+NVDA+o=review_endOfLine
|
|---|
| 64 | shift+next=review_endOfLine
|
|---|
| 65 | NVDA+7=review_top
|
|---|
| 66 | shift+home=review_top
|
|---|
| 67 | NVDA+9=review_bottom
|
|---|
| 68 | shift+prior=review_bottom
|
|---|
| 69 | NVDA+/=review_sayAll
|
|---|
| 70 | add=review_sayAll
|
|---|
| 71 | NVDA+back=review_moveToCaret
|
|---|
| 72 | subtract=review_moveToCaret
|
|---|
| 73 | Shift+NVDA+back=review_moveCaretHere
|
|---|
| 74 | Control+subtract=review_moveCaretHere
|
|---|
| 75 | NVDA+6=toggleCaretMovesReviewCursor
|
|---|
| 76 |
|
|---|
| 77 | # object keys
|
|---|
| 78 | Control+NVDA+7=toggleFocusMovesNavigatorObject
|
|---|
| 79 | NVDA+extendedDelete=navigatorObject_currentDimensions
|
|---|
| 80 | NVDA+Delete=navigatorObject_currentDimensions
|
|---|
| 81 | Control+NVDA+i=navigatorObject_current
|
|---|
| 82 | NVDA+Clear=navigatorObject_current
|
|---|
| 83 | Control+NVDA+back=navigatorObject_toFocus
|
|---|
| 84 | NVDA+Subtract=navigatorObject_toFocus
|
|---|
| 85 | Shift+NVDA+i=navigatorObject_parent
|
|---|
| 86 | NVDA+Up=navigatorObject_parent
|
|---|
| 87 | Shift+NVDA+,=navigatorObject_firstChild
|
|---|
| 88 | NVDA+Down=navigatorObject_firstChild
|
|---|
| 89 | Control+NVDA+j=navigatorObject_previous
|
|---|
| 90 | NVDA+Left=navigatorObject_previous
|
|---|
| 91 | Control+NVDA+l=navigatorObject_next
|
|---|
| 92 | NVDA+Right=navigatorObject_next
|
|---|
| 93 | NVDA+Return=navigatorObject_doDefaultAction
|
|---|
| 94 | NVDA+ExtendedReturn=navigatorObject_doDefaultAction
|
|---|
| 95 | Shift+NVDA+extendedLeft=moveMouseToNavigatorObject
|
|---|
| 96 | NVDA+extendedDivide=moveMouseToNavigatorObject
|
|---|
| 97 | Shift+NVDA+extendedRight=moveNavigatorObjectToMouse
|
|---|
| 98 | NVDA+Multiply=moveNavigatorObjectToMouse
|
|---|
| 99 | NVDA+extendedLeft=leftMouseClick
|
|---|
| 100 | extendedDivide=leftMouseClick
|
|---|
| 101 | NVDA+extendedRight=rightMouseClick
|
|---|
| 102 | multiply=rightMouseClick
|
|---|
| 103 |
|
|---|
| 104 | # Keys for activating settings dialogs
|
|---|
| 105 | Control+NVDA+g=activateGeneralSettingsDialog
|
|---|
| 106 | Control+NVDA+s=activateSynthesizerDialog
|
|---|
| 107 | Control+NVDA+v=activateVoiceDialog
|
|---|
| 108 | Control+NVDA+k=activateKeyboardSettingsDialog
|
|---|
| 109 | Control+NVDA+m=activateMouseSettingsDialog
|
|---|
| 110 | Control+NVDA+o=activateObjectPresentationDialog
|
|---|
| 111 | Control+NVDA+b=activateVirtualBuffersDialog
|
|---|
| 112 | Control+NVDA+d=activateDocumentFormattingDialog
|
|---|
| 113 | Control+NVDA+c=saveConfiguration
|
|---|
| 114 | Control+NVDA+r=revertToSavedConfiguration
|
|---|
| 115 | Control+NVDA+z=activatePythonConsole
|
|---|
| 116 | NVDA+c=reportClipboardText
|
|---|
| 117 | NVDA+f9=review_markStartForCopy
|
|---|
| 118 | NVDA+f10=review_copy
|
|---|
| 119 | nvda+control+space=moveToParentTreeInterceptor
|
|---|
| 120 | nvda+alt+7=navigatorObject_moveToFlatReviewAtObjectPosition
|
|---|
| 121 | nvda+alt+j=navigatorObject_moveToObjectAtFlatReviewPosition
|
|---|
| 122 | nvda+extendedPrior=navigatorObject_moveToFlatReviewAtObjectPosition
|
|---|
| 123 | nvda+extendedNext=navigatorObject_moveToObjectAtFlatReviewPosition
|
|---|