Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3990 lines (3396 sloc)
134 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| This file is intended to contain definitions for all commands in RStudio, as | |
| well as menu structures (for main menu and popup menus). | |
| <menu> | |
| Contains <menu>, <cmd>, <separator> | |
| @id (required): The method name for this menu on the command bundle interface | |
| @vertical: Whether the menu should be vertical. Defaults to true | |
| @label: For submenus, indicate the label in the parent menu for this submenu | |
| <cmd> (in menu context) | |
| @refid (required): The id of the command that should appear here | |
| <cmd> (in command context) | |
| @id (required): The method name for this command on the command bundle iface | |
| @label: Will be used for buttonLabel or menuLabel if they are not provided | |
| @buttonLabel: Label that should be used on toolbar button face. Use empty | |
| string if no label should be used | |
| @menuLabel: Label that should be used in a menu. | |
| @desc: Extended description (e.g. for tooltip) | |
| @checkable: Indicates whether the command has a stateful checked state, | |
| which is shown by the command when rendered in a menu (both GWT and | |
| native menus) | |
| @radio: Same as @checkable but indicates that the command is part of a | |
| group of mutually exclusive checkable commands; management of the mutually | |
| exclusive behavior is not automatic and must be managed in code | |
| @preventShortcutWhenDisabled: Whether the command's shortcut should be | |
| suppressed when the command is disabled | |
| @visible: Whether the command should initially be visible. You should always | |
| set windowMode to "main" for commands not initially visible, unless all | |
| satellite windows manage the command state correctly at startup. | |
| @windowMode: Which window the command wants to operate on; possible values: | |
| "any": operates on current window (the default), | |
| "main": always operates on main window, and raises main window | |
| "background": always operates on main window, but in the background | |
| "<satellite name>": operates on named satellite; sent to the main window | |
| for processing unless fired from the named satellite | |
| --> | |
| <commands> | |
| <menu id="mainMenu" vertical="false"> | |
| <!-- | |
| Keep ShowMainMenuEvent.Menu enum in sync with top-level main-menu entries (File, Edit...) | |
| --> | |
| <menu label="_File"> | |
| <menu label="New _File"> | |
| <cmd refid="newSourceDoc"/> | |
| <separator/> | |
| <cmd refid="newRNotebook"/> | |
| <separator/> | |
| <cmd refid="newRMarkdownDoc"/> | |
| <cmd refid="newRShinyApp"/> | |
| <cmd refid="newRPlumberDoc"/> | |
| <separator/> | |
| <cmd refid="newCDoc"/> | |
| <cmd refid="newCppDoc"/> | |
| <cmd refid="newHeaderDoc"/> | |
| <separator/> | |
| <cmd refid="newMarkdownDoc"/> | |
| <cmd refid="newHtmlDoc"/> | |
| <cmd refid="newCssDoc"/> | |
| <cmd refid="newJavaScriptDoc"/> | |
| <cmd refid="newD3Doc"/> | |
| <separator/> | |
| <cmd refid="newPythonDoc"/> | |
| <cmd refid="newShellDoc"/> | |
| <cmd refid="newSqlDoc"/> | |
| <cmd refid="newStanDoc"/> | |
| <cmd refid="newTextDoc"/> | |
| <separator/> | |
| <cmd refid="newSweaveDoc"/> | |
| <cmd refid="newRHTMLDoc"/> | |
| <cmd refid="newRPresentationDoc"/> | |
| <cmd refid="newRDocumentationDoc"/> | |
| </menu> | |
| <cmd refid="newProject"/> | |
| <separator/> | |
| <cmd refid="openSourceDoc"/> | |
| <cmd refid="openSourceDocNewColumn"/> | |
| <cmd refid="reopenSourceDocWithEncoding"/> | |
| <menu label="_Recent Files"> | |
| <cmd refid="mru0"/> | |
| <cmd refid="mru1"/> | |
| <cmd refid="mru2"/> | |
| <cmd refid="mru3"/> | |
| <cmd refid="mru4"/> | |
| <cmd refid="mru5"/> | |
| <cmd refid="mru6"/> | |
| <cmd refid="mru7"/> | |
| <cmd refid="mru8"/> | |
| <cmd refid="mru9"/> | |
| <cmd refid="mru10"/> | |
| <cmd refid="mru11"/> | |
| <cmd refid="mru12"/> | |
| <cmd refid="mru13"/> | |
| <cmd refid="mru14"/> | |
| <separator/> | |
| <cmd refid="clearRecentFiles"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="openProject"/> | |
| <cmd refid="openProjectInNewWindow"/> | |
| <menu label="Recent Pro_jects"> | |
| <cmd refid="projectMru0"/> | |
| <cmd refid="projectMru1"/> | |
| <cmd refid="projectMru2"/> | |
| <cmd refid="projectMru3"/> | |
| <cmd refid="projectMru4"/> | |
| <cmd refid="projectMru5"/> | |
| <cmd refid="projectMru6"/> | |
| <cmd refid="projectMru7"/> | |
| <cmd refid="projectMru8"/> | |
| <cmd refid="projectMru9"/> | |
| <cmd refid="projectMru10"/> | |
| <cmd refid="projectMru11"/> | |
| <cmd refid="projectMru12"/> | |
| <cmd refid="projectMru13"/> | |
| <cmd refid="projectMru14"/> | |
| <separator/> | |
| <cmd refid="clearRecentProjects"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="shareProject"/> | |
| <separator/> | |
| <menu label="_Import Dataset"> | |
| <cmd refid="importDatasetFromCsvUsingBase"/> | |
| <cmd refid="importDatasetFromCsvUsingReadr"/> | |
| <cmd refid="importDatasetFromFile"/> | |
| <cmd refid="importDatasetFromURL"/> | |
| <separator/> | |
| <cmd refid="importDatasetFromXLS"/> | |
| <separator/> | |
| <cmd refid="importDatasetFromSAV"/> | |
| <cmd refid="importDatasetFromSAS"/> | |
| <cmd refid="importDatasetFromStata"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="saveSourceDoc"/> | |
| <cmd refid="saveSourceDocAs"/> | |
| <cmd refid="renameSourceDoc"/> | |
| <cmd refid="saveSourceDocWithEncoding"/> | |
| <cmd refid="saveAllSourceDocs"/> | |
| <separator/> | |
| <cmd refid="knitDocument"/> | |
| <cmd refid="previewHTML"/> | |
| <cmd refid="compilePDF"/> | |
| <cmd refid="compileNotebook"/> | |
| <separator/> | |
| <cmd refid="rsconnectDeploy"/> | |
| <separator/> | |
| <cmd refid="printSourceDoc"/> | |
| <separator/> | |
| <cmd refid="closeSourceDoc"/> | |
| <cmd refid="closeAllSourceDocs"/> | |
| <cmd refid="closeOtherSourceDocs"/> | |
| <separator/> | |
| <cmd refid="closeProject"/> | |
| <separator/> | |
| <cmd refid="loadServerHome"/> | |
| <cmd refid="signOut"/> | |
| <cmd refid="quitSession"/> | |
| </menu> | |
| <menu label="_Edit"> | |
| <cmd refid="sourceNavigateBack"/> | |
| <cmd refid="sourceNavigateForward"/> | |
| <separator/> | |
| <cmd refid="undoDummy"/> | |
| <cmd refid="redoDummy"/> | |
| <separator/> | |
| <cmd refid="cutDummy"/> | |
| <cmd refid="copyDummy"/> | |
| <cmd refid="pasteDummy"/> | |
| <cmd refid="pasteWithIndentDummy"/> | |
| <separator/> | |
| <menu label="_Folding"> | |
| <cmd refid="fold"/> | |
| <cmd refid="unfold"/> | |
| <separator/> | |
| <cmd refid="foldAll"/> | |
| <cmd refid="unfoldAll"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="notebookExpandAllOutput"/> | |
| <cmd refid="notebookCollapseAllOutput"/> | |
| <separator/> | |
| <cmd refid="notebookClearOutput"/> | |
| <cmd refid="notebookClearAllOutput"/> | |
| <separator/> | |
| <cmd refid="goToLine"/> | |
| <separator/> | |
| <cmd refid="findReplace"/> | |
| <cmd refid="findNext"/> | |
| <cmd refid="findPrevious"/> | |
| <cmd refid="findFromSelection"/> | |
| <cmd refid="replaceAndFind"/> | |
| <separator/> | |
| <cmd refid="findInFiles"/> | |
| <separator/> | |
| <cmd refid="checkSpelling"/> | |
| <cmd refid="wordCount"/> | |
| <separator/> | |
| <cmd refid="consoleClear"/> | |
| <separator/> | |
| <cmd refid="macPreferences"/> | |
| </menu> | |
| <menu label="_Code"> | |
| <cmd refid="insertChunk"/> | |
| <cmd refid="insertSection"/> | |
| <separator/> | |
| <cmd refid="jumpTo"/> | |
| <cmd refid="goToFileFunction"/> | |
| <separator/> | |
| <cmd refid="toggleDocumentOutline"/> | |
| <cmd refid="toggleSoftWrapMode"/> | |
| <cmd refid="toggleRainbowParens"/> | |
| <separator/> | |
| <cmd refid="showDiagnosticsActiveDocument"/> | |
| <cmd refid="showDiagnosticsProject"/> | |
| <separator/> | |
| <cmd refid="goToHelp"/> | |
| <cmd refid="goToDefinition"/> | |
| <cmd refid="findUsages"/> | |
| <separator/> | |
| <cmd refid="extractFunction"/> | |
| <cmd refid="extractLocalVariable"/> | |
| <cmd refid="renameInScope"/> | |
| <separator/> | |
| <cmd refid="reflowComment"/> | |
| <cmd refid="commentUncomment"/> | |
| <cmd refid="insertRoxygenSkeleton"/> | |
| <separator/> | |
| <cmd refid="reindent"/> | |
| <cmd refid="reformatCode"/> | |
| <separator/> | |
| <cmd refid="executeCode"/> | |
| <cmd refid="executeLastCode"/> | |
| <menu label="Run Regi_on"> | |
| <cmd refid="executeSetupChunk"/> | |
| <cmd refid="executePreviousChunks"/> | |
| <cmd refid="executeSubsequentChunks"/> | |
| <cmd refid="executeCurrentChunk"/> | |
| <cmd refid="executeNextChunk"/> | |
| <cmd refid="executeToCurrentLine"/> | |
| <cmd refid="executeFromCurrentLine"/> | |
| <cmd refid="executeCurrentFunction"/> | |
| <cmd refid="executeCurrentSection"/> | |
| <separator/> | |
| <cmd refid="executeAllCode"/> | |
| </menu> | |
| <cmd refid="runSelectionAsLauncherJob"/> | |
| <cmd refid="runSelectionAsJob"/> | |
| <menu label="_Terminal"> | |
| <cmd refid="sendToTerminal"/> | |
| <cmd refid="openNewTerminalAtEditorLocation"/> | |
| <cmd refid="sendFilenameToTerminal"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="previewJS"/> | |
| <cmd refid="previewSql"/> | |
| <cmd refid="sourceActiveDocument"/> | |
| <cmd refid="sourceActiveDocumentWithEcho"/> | |
| <separator/> | |
| <cmd refid="sourceFile"/> | |
| <separator/> | |
| </menu> | |
| <menu label="_View"> | |
| <cmd refid="showToolbar"/> | |
| <cmd refid="hideToolbar"/> | |
| <separator/> | |
| <menu label="P_anes"> | |
| <cmd refid="layoutEndZoom"/> | |
| <cmd refid="newSourceColumn"/> | |
| <separator/> | |
| <cmd refid="layoutConsoleOnLeft"/> | |
| <cmd refid="layoutConsoleOnRight"/> | |
| <separator/> | |
| <cmd refid="layoutZoomLeftColumn"/> | |
| <cmd refid="layoutZoomRightColumn"/> | |
| <separator/> | |
| <cmd refid="layoutZoomSource"/> | |
| <cmd refid="layoutZoomConsole"/> | |
| <cmd refid="layoutZoomHelp"/> | |
| <separator/> | |
| <cmd refid="layoutZoomHistory"/> | |
| <cmd refid="layoutZoomFiles"/> | |
| <cmd refid="layoutZoomPlots"/> | |
| <cmd refid="layoutZoomPackages"/> | |
| <cmd refid="layoutZoomEnvironment"/> | |
| <cmd refid="layoutZoomViewer"/> | |
| <cmd refid="layoutZoomVcs"/> | |
| <cmd refid="layoutZoomTutorial"/> | |
| <cmd refid="layoutZoomBuild"/> | |
| <cmd refid="layoutZoomConnections"/> | |
| <separator/> | |
| <cmd refid="focusLeftSeparator"/> | |
| <cmd refid="focusRightSeparator"/> | |
| <cmd refid="focusCenterSeparator"/> | |
| <cmd refid="focusSourceColumnSeparator"/> | |
| <separator/> | |
| <cmd refid="paneLayout"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="zoomActualSize"/> | |
| <cmd refid="zoomIn"/> | |
| <cmd refid="zoomOut"/> | |
| <separator/> | |
| <cmd refid="toggleFullScreen"/> | |
| <separator/> | |
| <cmd refid="switchToTab"/> | |
| <cmd refid="nextTab"/> | |
| <cmd refid="previousTab"/> | |
| <cmd refid="firstTab"/> | |
| <cmd refid="lastTab"/> | |
| <separator/> | |
| <cmd refid="activateSource"/> | |
| <cmd refid="activateConsole"/> | |
| <cmd refid="activateTerminal"/> | |
| <cmd refid="activateHelp"/> | |
| <separator/> | |
| <cmd refid="activateHistory"/> | |
| <cmd refid="activateFiles"/> | |
| <cmd refid="activatePlots"/> | |
| <cmd refid="activatePackages"/> | |
| <cmd refid="activateEnvironment"/> | |
| <cmd refid="activateViewer"/> | |
| <cmd refid="activateVcs"/> | |
| <cmd refid="activateBuild"/> | |
| <cmd refid="activateConnections"/> | |
| <cmd refid="activateTutorial"/> | |
| <cmd refid="activateJobs"/> | |
| <cmd refid="activateLauncherJobs"/> | |
| <menu label="Show Other _Panes"> | |
| <cmd refid="activatePresentation"/> | |
| <cmd refid="activateCompilePDF"/> | |
| <cmd refid="activateFindInFiles"/> | |
| <cmd refid="activateSourceCpp"/> | |
| <cmd refid="activateRMarkdown"/> | |
| <cmd refid="activateDeployContent"/> | |
| <cmd refid="activateMarkers"/> | |
| <cmd refid="activateSQLResults"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="synctexSearch"/> | |
| </menu> | |
| <menu label="_Plots"> | |
| <cmd refid="nextPlot"/> | |
| <cmd refid="previousPlot"/> | |
| <separator/> | |
| <cmd refid="zoomPlot"/> | |
| <separator/> | |
| <cmd refid="savePlotAsImage"/> | |
| <cmd refid="savePlotAsPdf"/> | |
| <separator/> | |
| <cmd refid="copyPlotToClipboard"/> | |
| <separator/> | |
| <cmd refid="removePlot"/> | |
| <separator/> | |
| <cmd refid="clearPlots"/> | |
| </menu> | |
| <menu label="_Session"> | |
| <cmd refid="newSession"/> | |
| <separator/> | |
| <cmd refid="interruptR"/> | |
| <cmd refid="terminateR"/> | |
| <cmd refid="suspendSession"/> | |
| <separator/> | |
| <cmd refid="restartR"/> | |
| <cmd refid="restartRClearOutput"/> | |
| <cmd refid="restartRRunAllChunks"/> | |
| <separator/> | |
| <menu label="Set _Working Directory"> | |
| <cmd refid="setWorkingDirToProjectDir"/> | |
| <cmd refid="setWorkingDirToActiveDoc"/> | |
| <cmd refid="setWorkingDirToFilesPane"/> | |
| <separator/> | |
| <cmd refid="setWorkingDir"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="showSessionServerOptionsDialog"/> | |
| <separator/> | |
| <cmd refid="loadWorkspace"/> | |
| <cmd refid="saveWorkspace"/> | |
| <separator/> | |
| <cmd refid="clearWorkspace"/> | |
| <separator/> | |
| <cmd refid="quitSession"/> | |
| </menu> | |
| <menu label="_Build"> | |
| <cmd refid="devtoolsLoadAll"/> | |
| <cmd refid="buildAll"/> | |
| <cmd refid="rebuildAll"/> | |
| <cmd refid="cleanAll"/> | |
| <separator/> | |
| <cmd refid="testPackage"/> | |
| <separator/> | |
| <cmd refid="checkPackage"/> | |
| <separator/> | |
| <cmd refid="buildSourcePackage"/> | |
| <cmd refid="buildBinaryPackage"/> | |
| <separator/> | |
| <cmd refid="roxygenizePackage"/> | |
| <separator/> | |
| <cmd refid="stopBuild"/> | |
| <separator/> | |
| <cmd refid="buildToolsProjectSetup"/> | |
| </menu> | |
| <menu label="_Debug"> | |
| <cmd refid="debugBreakpoint"/> | |
| <cmd refid="debugClearBreakpoints"/> | |
| <separator/> | |
| <cmd refid="debugStep"/> | |
| <cmd refid="debugStepInto"/> | |
| <cmd refid="debugFinish"/> | |
| <cmd refid="debugContinue"/> | |
| <cmd refid="debugStop"/> | |
| <separator/> | |
| <menu label="_On Error"> | |
| <cmd refid="errorsMessage"/> | |
| <cmd refid="errorsTraceback"/> | |
| <cmd refid="errorsBreak"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="debugHelp"/> | |
| </menu> | |
| <menu label="_Profile"> | |
| <cmd refid="startProfiler"/> | |
| <cmd refid="stopProfiler"/> | |
| <separator/> | |
| <cmd refid="profileCode"/> | |
| <separator/> | |
| <cmd refid="openProfile"/> | |
| <cmd refid="saveProfileAs"/> | |
| <separator/> | |
| <cmd refid="profileHelp"/> | |
| </menu> | |
| <menu label="_Tools"> | |
| <cmd refid="installPackage"/> | |
| <cmd refid="updatePackages"/> | |
| <separator/> | |
| <menu label="_Version Control"> | |
| <cmd refid="vcsFileDiff"/> | |
| <cmd refid="vcsFileLog"/> | |
| <cmd refid="vcsFileRevert"/> | |
| <separator/> | |
| <cmd refid="vcsViewOnGitHub"/> | |
| <cmd refid="vcsBlameOnGitHub"/> | |
| <separator/> | |
| <cmd refid="vcsCommit"/> | |
| <separator/> | |
| <cmd refid="vcsPull"/> | |
| <cmd refid="vcsCleanup"/> | |
| <cmd refid="vcsPush"/> | |
| <separator/> | |
| <cmd refid="vcsShowHistory"/> | |
| <separator/> | |
| <cmd refid="versionControlProjectSetup"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="showShellDialog"/> | |
| <menu label="_Terminal"> | |
| <cmd refid="newTerminal"/> | |
| <separator/> | |
| <cmd refid="setTerminalToCurrentDirectory"/> | |
| <cmd refid="renameTerminal"/> | |
| <cmd refid="sendTerminalToEditor"/> | |
| <cmd refid="showTerminalInfo"/> | |
| <separator/> | |
| <cmd refid="activateTerminal"/> | |
| <cmd refid="previousTerminal"/> | |
| <cmd refid="nextTerminal"/> | |
| <separator/> | |
| <cmd refid="interruptTerminal"/> | |
| <cmd refid="clearTerminalScrollbackBuffer"/> | |
| <cmd refid="closeTerminal"/> | |
| <separator/> | |
| <cmd refid="closeAllTerminals"/> | |
| <separator/> | |
| <cmd refid="showTerminalOptions"/> | |
| </menu> | |
| <menu label="_Jobs"> | |
| <cmd refid="startJob"/> | |
| <cmd refid="clearJobs"/> | |
| <separator/> | |
| <cmd refid="activateJobs"/> | |
| </menu> | |
| <menu label="_Launcher"> | |
| <cmd refid="startLauncherJob"/> | |
| <separator/> | |
| <cmd refid="activateLauncherJobs"/> | |
| </menu> | |
| <menu label="_Addins"> | |
| <cmd refid="browseAddins"/> | |
| </menu> | |
| <menu label="_Memory"> | |
| <cmd refid="freeUnusedMemory"/> | |
| <cmd refid="showMemoryUsageReport"/> | |
| <separator/> | |
| <cmd refid="toggleShowMemoryUsage"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="helpKeyboardShortcuts"/> | |
| <cmd refid="modifyKeyboardShortcuts"/> | |
| <cmd refid="showCommandPalette"/> | |
| <separator/> | |
| <cmd refid="projectOptions"/> | |
| <separator/> | |
| <cmd refid="showOptions"/> | |
| </menu> | |
| <menu label="_Help"> | |
| <cmd refid="helpHome"/> | |
| <cmd refid="helpSearch"/> | |
| <separator/> | |
| <cmd refid="showAboutDialog"/> | |
| <cmd refid="showLicenseDialog"/> | |
| <cmd refid="checkForUpdates"/> | |
| <separator/> | |
| <menu label="_Accessibility"> | |
| <cmd refid="toggleScreenReaderSupport"/> | |
| <separator/> | |
| <menu label="S_peak"> | |
| <cmd refid="speakEditorLocation"/> | |
| </menu> | |
| <menu label="_Focus"> | |
| <cmd refid="activateSource"/> | |
| <cmd refid="activateConsole"/> | |
| <cmd refid="focusConsoleOutputEnd"/> | |
| <cmd refid="focusNextPane"/> | |
| <cmd refid="focusPreviousPane"/> | |
| <cmd refid="activateTerminal"/> | |
| <cmd refid="activateHelp"/> | |
| <cmd refid="focusMainToolbar"/> | |
| <cmd refid="toggleTabKeyMovesFocus"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="showAccessibilityOptions"/> | |
| <cmd refid="showAccessibilityHelp"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="helpUsingRStudio"/> | |
| <cmd refid="rstudioCommunityForum"/> | |
| <cmd refid="rstudioSupport"/> | |
| <separator/> | |
| <menu label="_Cheat Sheets"> | |
| <cmd refid="openRStudioIDECheatSheet"/>' | |
| <cmd refid="openDataTransformationCheatSheet"/> | |
| <cmd refid="openDataVisualizationCheatSheet"/> | |
| <cmd refid="openPurrrCheatSheet"/> | |
| <cmd refid="openPackageDevelopmentCheatSheet"/> | |
| <cmd refid="openShinyCheatSheet"/> | |
| <cmd refid="openSparklyrCheatSheet"/> | |
| <cmd refid="openRMarkdownCheatSheet"/> | |
| <cmd refid="openRMarkdownReferenceGuide"/> | |
| <separator/> | |
| <cmd refid="browseCheatSheets"/> | |
| </menu> | |
| <separator/> | |
| <cmd refid="helpKeyboardShortcuts"/> | |
| <cmd refid="markdownHelp"/> | |
| <cmd refid="openRoxygenQuickReference"/> | |
| <separator/> | |
| <menu label="Dia_gnostics"> | |
| <cmd refid="showRequestLog"/> | |
| <cmd refid="showLogFiles"/> | |
| <cmd refid="showGpuDiagnostics"/> | |
| <cmd refid="updateCredentials"/> | |
| <cmd refid="diagnosticsReport"/> | |
| <cmd refid="openDeveloperConsole"/> | |
| <cmd refid="reloadUi"/> | |
| <separator/> | |
| <cmd refid="editUserPrefs"/> | |
| <cmd refid="clearUserPrefs"/> | |
| <cmd refid="viewAllPrefs"/> | |
| <separator/> | |
| <cmd refid="debugDumpContents"/> | |
| <cmd refid="debugImportDump"/> | |
| <cmd refid="toggleEditorTokenInfo"/> | |
| <separator/> | |
| <cmd refid="showDomElements"/> | |
| <cmd refid="showShortcutCommand"/> | |
| <separator/> | |
| <cmd refid="enableProsemirrorDevTools"/> | |
| </menu> | |
| </menu> | |
| </menu> | |
| <shortcuts> | |
| <!-- | |
| Only the following keys may be used: | |
| Alphanumerics | |
| / | |
| Enter | |
| Left, Right, Up, Down | |
| Tab | |
| PageUp, PageDown | |
| F1-F12 | |
| = | |
| < | |
| ` | |
| . | |
| --> | |
| <!-- Valid modifiers are Ctrl, Alt, Meta, Shift, and Cmd --> | |
| <!-- "Cmd" means Ctrl OR Meta --> | |
| <!-- Use spaces for key sequences, e.g. 'Ctrl+X Ctrl+F' --> | |
| <!-- Separate shortcuts with '|', e.g. 'Ctrl+X Ctrl+F|Cmd+O' --> | |
| <!-- When adding/changing shortcuts, also update keyboard.htm --> | |
| <shortcutgroup name="Source Editor"> | |
| <shortcut refid="insertChunk" value="Cmd+Alt+I"/> | |
| <shortcut refid="insertSection" value="Cmd+Shift+R" disableModes="sublime"/> | |
| <shortcut refid="insertSection" value="Ctrl+Shift+R" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="extractFunction" value="Cmd+Alt+X"/> | |
| <shortcut refid="extractLocalVariable" value="Cmd+Alt+V"/> | |
| <shortcut refid="commentUncomment" value="Cmd+Shift+C"/> | |
| <shortcut refid="commentUncomment" value="Cmd+/" disableModes="default,vim,emacs"/> | |
| <shortcut refid="blockOutdent" value="Meta+[" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="blockIndent" value="Meta+]" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="reindent" value="Cmd+I"/> | |
| <shortcut refid="reflowComment" value="Ctrl+Shift+/" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="reflowComment" value="Cmd+Shift+/" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="reformatCode" value="Cmd+Shift+A"/> | |
| <shortcut refid="showDiagnosticsProject" value="Cmd+Shift+Alt+D"/> | |
| <shortcut refid="fold" value="Alt+L" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" title="Collapse Fold"/> | |
| <shortcut refid="fold" value="Cmd+Alt+L" if="org.rstudio.core.client.BrowseCap.isMacintosh()" title="Collapse Fold"/> | |
| <shortcut refid="unfold" value="Shift+Alt+L" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" title="Expand Fold"/> | |
| <shortcut refid="unfold" value="Cmd+Shift+Alt+L" if="org.rstudio.core.client.BrowseCap.isMacintosh()" title="Expand Fold"/> | |
| <shortcut refid="foldAll" value="Alt+O" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" title="Collapse All Folds"/> | |
| <shortcut refid="foldAll" value="Cmd+Alt+O" if="org.rstudio.core.client.BrowseCap.isMacintosh()" title="Collapse All Folds"/> | |
| <shortcut refid="unfoldAll" value="Shift+Alt+O" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" title="Expand All Folds"/> | |
| <shortcut refid="unfoldAll" value="Cmd+Shift+Alt+O" if="org.rstudio.core.client.BrowseCap.isMacintosh()" title="Expand All Folds"/> | |
| <shortcut value="Ctrl+K" title="Delete to Line End" if="org.rstudio.core.client.BrowseCap.isMacintosh()" /> | |
| <shortcut value="Alt+Up" title="Move Lines Up" /> | |
| <shortcut refid="moveLinesUp" value="Ctrl+Meta+Up" title="Move Lines Up" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="moveLinesUp" value="Ctrl+Shift+Up" title="Move Lines Up" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut value="Alt+Down" title="Move Lines Down" /> | |
| <shortcut refid="moveLinesDown" value="Ctrl+Meta+Down" title="Move Lines Down" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="moveLinesDown" value="Ctrl+Shift+Down" title="Move Lines Down" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut value="Ctrl+D" title="Delete Line" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="sublime"/> | |
| <shortcut value="Cmd+D" title="Delete Line" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="sublime" /> | |
| <shortcut refid="expandToLine" value="Meta+L" title="Expand Selection to line" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs" /> | |
| <!-- Ctrl+L to be handled by ShortcutManager --> | |
| <!-- <shortcut refid="expandToLine" value="Ctrl+L" title="Expand Selection to line" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs" /> --> | |
| <shortcut refid="copyLinesDown" value="Cmd+Shift+D" title="Copy Lines Down" disableModes="default,vim,emacs" /> | |
| <shortcut refid="joinLines" value="Cmd+J" title="Join Lines" disableModes="default,vim,emacs" /> | |
| <shortcut refid="removeLine" value="Ctrl+Shift+K" title="Delete Line" disableModes="default,vim,emacs" /> | |
| <shortcut refid="yankRegion" value="Ctrl+W" title="Kill Region" disableModes="default,vim,sublime"/> | |
| <shortcut refid="yankBeforeCursor" value="Ctrl+U" title="Yank Line Up to Cursor" disableModes="vim"/> | |
| <shortcut refid="yankAfterCursor" value="Ctrl+K" title="Yank Line After Cursor" /> | |
| <shortcut refid="pasteLastYank" value="Ctrl+Y" title="Insert Yanked Text" /> | |
| <shortcut value="Ctrl+T" title="Transpose Letters" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="insertAssignmentOperator" value="Alt+-" title="Insert Assignment Operator"/> | |
| <shortcut refid="insertPipeOperator" value="Meta+Shift+M" title="Insert Pipe Operator" /> | |
| <shortcut refid="insertPipeOperator" value="Ctrl+Shift+M" title="Insert Pipe Operator" disableModes="sublime"/> | |
| <shortcut refid="renameInScope" value="Cmd+Alt+Shift+M" /> | |
| <shortcut refid="insertRoxygenSkeleton" value="Cmd+Shift+Alt+R" title="Insert Roxygen Skeleton" /> | |
| </shortcutgroup> | |
| <shortcutgroup name="Source Navigation"> | |
| <shortcut refid="sourceNavigateBack" value="Cmd+F9"/> | |
| <shortcut refid="sourceNavigateForward" value="Cmd+F10"/> | |
| <shortcut refid="quickAddNext" value="Cmd+D" title="Find and Add Next" disableModes="default,vim,emacs" /> | |
| <shortcut refid="findUsages" value="Cmd+Alt+U"/> | |
| <shortcut refid="findFromSelection" value="Meta+E" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="findFromSelection" value="Ctrl+F3" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="findReplace" value="Meta+F"/> | |
| <shortcut refid="findReplace" value="Ctrl+F" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="vim,emacs"/> | |
| <shortcut refid="findNext" value="Meta+G" if="!org.rstudio.core.client.BrowseCap.isWindows()"/> | |
| <shortcut refid="findNext" value="Ctrl+G" if="!org.rstudio.core.client.BrowseCap.isWindows()" disableModes="emacs,sublime"/> | |
| <shortcut refid="findNext" value="F3" if="org.rstudio.core.client.BrowseCap.isWindows()"/> | |
| <shortcut refid="findPrevious" value="Cmd+Shift+G" if="!org.rstudio.core.client.BrowseCap.isWindows()"/> | |
| <shortcut refid="findPrevious" value="Shift+F3" if="org.rstudio.core.client.BrowseCap.isWindows()"/> | |
| <shortcut refid="replaceAndFind" value="Cmd+Shift+J"/> | |
| <shortcut refid="goToFileFunction" value="Ctrl+."/> | |
| <shortcut refid="goToFileFunction" value="Cmd+P" disableModes="default,vim,emacs"/> | |
| <shortcut refid="goToFileFunction" value="Meta+Shift+R" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="goToFileFunction" value="Ctrl+Shift+R" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="goToLine" value="Alt+G" disableModes="default,vim,sublime"/> | |
| <shortcut refid="goToLine" value="Ctrl+G" disableModes="default,vim,emacs"/> | |
| <shortcut refid="goToLine" value="Shift+Alt+G" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="goToLine" value="Cmd+Shift+Alt+G" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="jumpTo" value="Shift+Alt+J" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="jumpTo" value="Cmd+Shift+Alt+J" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="jumpToMatching" value="Ctrl+P" disableModes="emacs,sublime"/> | |
| <shortcut refid="jumpToMatching" value="Ctrl+M" disableModes="default,vim,emacs"/> | |
| <shortcut refid="expandToMatching" value="Ctrl+Shift+E" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="expandToMatching" value="Ctrl+Shift+Alt+E" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="expandToMatching" value="Ctrl+Shift+M" disableModes="default,vim,emacs"/> | |
| <shortcut refid="toggleDocumentOutline" value="Cmd+Shift+O"/> | |
| <shortcut refid="addCursorAbove" value="Ctrl+Alt+Up"/> | |
| <shortcut refid="addCursorBelow" value="Ctrl+Alt+Down"/> | |
| <shortcut refid="expandSelection" value="Ctrl+Shift+Up" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="sublime"/> | |
| <shortcut refid="shrinkSelection" value="Ctrl+Shift+Down" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="sublime"/> | |
| <shortcut refid="expandSelection" value="Cmd+Alt+Shift+Up" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="shrinkSelection" value="Cmd+Alt+Shift+Down" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="goToNextSection" value="Cmd+PageDown"/> | |
| <shortcut refid="goToPrevSection" value="Cmd+PageUp"/> | |
| <shortcut refid="splitIntoLines" value="Ctrl+Alt+A" disableModes="emacs"/> | |
| <shortcut refid="splitIntoLines" value="Meta+Shift+L" if="org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="splitIntoLines" value="Ctrl+Shift+L" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,emacs"/> | |
| <shortcut refid="editLinesFromStart" value="Ctrl+Alt+Shift+A"/> | |
| <shortcut refid="goToStartOfCurrentScope" value="Ctrl+Alt+A" disableModes="default,vim,sublime"/> | |
| <shortcut refid="goToEndOfCurrentScope" value="Ctrl+Alt+E" disableModes="default,vim,sublime"/> | |
| <shortcut refid="toggleRmdVisualMode" value="Meta+Shift+F4" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="toggleRmdVisualMode" value="Ctrl+Shift+F4" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut value="Ctrl+Alt+Shift+Up" title="Move active cursor up"/> | |
| <shortcut value="Ctrl+Alt+Shift+Down" title="Move active cursor down"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="View"> | |
| <shortcut refid="zoomIn" value="Meta+=" if="org.rstudio.core.client.BrowseCap.isMacintoshDesktop()"/> | |
| <shortcut refid="zoomOut" value="Meta+-" if="org.rstudio.core.client.BrowseCap.isMacintoshDesktop()"/> | |
| <shortcut refid="zoomActualSize" value="Meta+0" if="org.rstudio.core.client.BrowseCap.isMacintoshDesktop()"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Panes"> | |
| <shortcut refid="switchFocusSourceConsole" value="Ctrl+X O|Ctrl+X Ctrl+O" disableModes="default,vim,sublime"/> | |
| <shortcut refid="activateConsole" value="Alt+X" disableModes="default,vim,sublime"/> | |
| <shortcut refid="activateSource" value="Ctrl+1"/> | |
| <shortcut refid="activateConsole" value="Ctrl+2"/> | |
| <shortcut refid="activateHelp" value="Ctrl+3"/> | |
| <shortcut refid="activateHistory" value="Ctrl+4"/> | |
| <shortcut refid="activateFiles" value="Ctrl+5"/> | |
| <shortcut refid="activatePlots" value="Ctrl+6"/> | |
| <shortcut refid="activatePackages" value="Ctrl+7"/> | |
| <shortcut refid="activateEnvironment" value="Ctrl+8"/> | |
| <shortcut refid="activateViewer" value="Ctrl+9"/> | |
| <shortcut refid="activateVcs" value="Meta+F1" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="activateVcs" value="Ctrl+F1" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="activateBuild" value="Meta+F2" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="activateBuild" value="Ctrl+F2" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <!-- Not using Cmd+F5 (aka Meta+F5) on Mac, it is the standard shortcut for toggling VoiceOver --> | |
| <shortcut refid="activateConnections" value="Ctrl+F5" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="activateFindInFiles" value="Meta+F6" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="activateFindInFiles" value="Ctrl+F6" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="newSourceColumn" value="Meta+F7" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="newSourceColumn" value="Ctrl+F7" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <!-- Windows masks Ctrl+Shift+0 for IME input --> | |
| <shortcut refid="layoutEndZoom" value="Ctrl+Shift+0" if="!org.rstudio.core.client.BrowseCap.isWindowsDesktop()" /> | |
| <shortcut refid="layoutEndZoom" value="Ctrl+Alt+Shift+0" if="org.rstudio.core.client.BrowseCap.isWindowsDesktop()" /> | |
| </shortcutgroup> | |
| <shortcutgroup name="Tabs"> | |
| <shortcut refid="switchToTab" value="Ctrl+X B" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="switchToTab" value="Ctrl+X B" if="!org.rstudio.core.client.BrowseCap.isMacintosh()" disableModes="default,vim,sublime"/> | |
| <shortcut refid="switchToTab" value="Ctrl+Shift+."/> | |
| <shortcut refid="nextTab" value="Ctrl+Alt+Right" if="!org.rstudio.core.client.BrowseCap.isLinux()"/> | |
| <shortcut refid="nextTab" value="Ctrl+X Right" disableModes="default,vim,sublime"/> | |
| <shortcut refid="nextTab" value="Ctrl+F12"/> | |
| <shortcut refid="nextTab" value="Ctrl+Tab" if="org.rstudio.studio.client.application.Desktop.isDesktop()"/> | |
| <shortcut refid="nextTab" value="Cmd+Shift+]" disableModes="default,vim,emacs"/> | |
| <shortcut refid="previousTab" value="Ctrl+Alt+Left" if="!org.rstudio.core.client.BrowseCap.isLinux()"/> | |
| <shortcut refid="previousTab" value="Ctrl+F11"/> | |
| <shortcut refid="previousTab" value="Ctrl+X Left" disableModes="default,vim,sublime"/> | |
| <shortcut refid="previousTab" value="Ctrl+Shift+Tab" if="org.rstudio.studio.client.application.Desktop.isDesktop()"/> | |
| <shortcut refid="previousTab" value="Cmd+Shift+[" disableModes="default,vim,emacs"/> | |
| <shortcut refid="firstTab" value="Ctrl+Alt+Shift+Left"/> | |
| <shortcut refid="firstTab" value="Ctrl+Shift+F11"/> | |
| <shortcut refid="lastTab" value="Ctrl+Alt+Shift+Right"/> | |
| <shortcut refid="lastTab" value="Ctrl+Shift+F12"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Files"> | |
| <shortcut refid="saveSourceDoc" value="Ctrl+X Ctrl+S" disableModes="default,vim,sublime"/> | |
| <shortcut refid="saveSourceDoc" value="Ctrl+S" disableModes="emacs"/> | |
| <shortcut refid="saveSourceDoc" value="Meta+S" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="saveAllSourceDocs" value="Ctrl+Alt+S" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="saveAllSourceDocs" value="Meta+Alt+S" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="newSourceDoc" value="Ctrl+X Ctrl+N" disableModes="default,vim,sublime"/> | |
| <shortcut refid="newSourceDoc" value="Cmd+Shift+N" if="!org.rstudio.core.client.BrowseCap.isChromeServer()" title="New R Script"/> | |
| <shortcut refid="newSourceDoc" value="Cmd+Shift+Alt+N" if="org.rstudio.core.client.BrowseCap.isChromeServer()" title="New R Script"/> | |
| <shortcut refid="openSourceDoc" value="Ctrl+X Ctrl+F" disableModes="default,vim,sublime"/> | |
| <shortcut refid="openSourceDoc" value="Ctrl+O" disableModes="emacs"/> | |
| <shortcut refid="openSourceDoc" value="Meta+O" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="closeSourceDoc" value="Ctrl+X K" disableModes="default,vim,sublime"/> | |
| <shortcut refid="closeSourceDoc" value="Ctrl+W" disableModes="emacs"/> | |
| <shortcut refid="closeSourceDoc" value="Meta+W" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="closeOtherSourceDocs" value="Cmd+Shift+Alt+W"/> | |
| <shortcut refid="closeAllSourceDocs" value="Cmd+Shift+W"/> | |
| <shortcut refid="findInFiles" value="Cmd+Shift+F"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Build"> | |
| <shortcut refid="compilePDF" value="Ctrl+Shift+K" disableModes="sublime"/> | |
| <shortcut refid="previewHTML" value="Ctrl+Shift+K" disableModes="sublime"/> | |
| <shortcut refid="knitDocument" value="Ctrl+Shift+K" disableModes="sublime"/> | |
| <shortcut refid="compilePDF" value="Meta+Shift+K" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="previewHTML" value="Meta+Shift+K" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="knitDocument" value="Meta+Shift+K" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="buildAll" value="Cmd+Shift+B"/> | |
| <shortcut refid="devtoolsLoadAll" value="Cmd+Shift+L" disableModes="sublime"/> | |
| <shortcut refid="devtoolsLoadAll" value="Ctrl+Shift+L" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="checkPackage" value="Cmd+Shift+E"/> | |
| <shortcut refid="testPackage" value="Cmd+Shift+T" if="org.rstudio.studio.client.application.Desktop.isDesktop()"/> | |
| <shortcut refid="testPackage" value="Cmd+Alt+F7" if="!org.rstudio.studio.client.application.Desktop.isDesktop()"/> | |
| <shortcut refid="roxygenizePackage" value="Cmd+Shift+D" disableModes="sublime"/> | |
| <shortcut refid="roxygenizePackage" value="Ctrl+Shift+D" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Execute"> | |
| <shortcut refid="sourceActiveDocument" value="Cmd+Shift+S" title="Source Active File"/> | |
| <shortcut refid="sourceActiveDocumentWithEcho" value="Cmd+Shift+Enter"/>; | |
| <shortcut refid="previewJS" value="Cmd+Shift+Enter"/>; | |
| <shortcut refid="previewSql" value="Cmd+Shift+Enter"/>; | |
| <shortcut refid="sourceFile" value="Ctrl+Alt+G" title="Source a File..."/> | |
| <shortcut refid="executeLastCode" value="Cmd+Alt+P"/> | |
| <shortcut refid="executeCode" value="Ctrl+C Ctrl+N" disableModes="default,vim,sublime"/> | |
| <shortcut refid="executeCode" value="Cmd+Enter"/> | |
| <shortcut refid="executeCodeWithoutMovingCursor" value="Alt+Enter"/> | |
| <shortcut refid="executeAllCode" value="Cmd+Alt+R"/> | |
| <shortcut refid="executeToCurrentLine" value="Cmd+Alt+B"/> | |
| <shortcut refid="executeFromCurrentLine" value="Cmd+Alt+E" disableModes="emacs"/> | |
| <shortcut refid="executeCurrentFunction" value="Ctrl+C Ctrl+F" disableModes="default,vim,sublime"/> | |
| <shortcut refid="executeCurrentFunction" value="Cmd+Alt+F"/> | |
| <shortcut refid="executeCurrentSection" value="Cmd+Alt+T"/> | |
| <shortcut refid="executePreviousChunks" value="Cmd+Alt+Shift+P"/> | |
| <shortcut refid="executeCurrentChunk" value="Cmd+Alt+C"/> | |
| <shortcut refid="executeCurrentChunk" value="Cmd+Shift+Enter"/> | |
| <shortcut refid="executeNextChunk" value="Cmd+Alt+N"/> | |
| <shortcut refid="sendToTerminal" value="Cmd+Alt+Enter"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Debug"> | |
| <shortcut refid="debugBreakpoint" value="Shift+F9"/> | |
| <shortcut refid="debugStep" value="F10"/> | |
| <shortcut refid="debugStepInto" value="Shift+F4"/> | |
| <shortcut refid="debugFinish" value="Shift+F7"/> | |
| <shortcut refid="debugContinue" value="Shift+F5"/> | |
| <shortcut refid="debugStop" value="Shift+F8"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Source Control"> | |
| <shortcut refid="vcsFileDiff" value="Ctrl+Alt+D" title="Diff Files"/> | |
| <shortcut refid="vcsCommit" value="Ctrl+Alt+M" /> | |
| </shortcutgroup> | |
| <shortcutgroup name="Other"> | |
| <shortcut value="F1" title="Show Function Help" /> | |
| <shortcut value="F2" title="Go To Function / File"/> | |
| <shortcut value="Tab|Ctrl+Space" title="Complete Code" /> | |
| <shortcut refid="quitSession" value="Cmd+Q" if="org.rstudio.studio.client.application.Desktop.isDesktop()"/> | |
| <shortcut refid="restartR" value="Meta+Shift+0" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="restartR" value="Cmd+Shift+F10"/> | |
| <shortcut refid="previousPlot" value="Cmd+Shift+PageUp" /> | |
| <shortcut refid="nextPlot" value="Cmd+Shift+PageDown" /> | |
| <shortcut refid="previousPlot" value="Cmd+Alt+F11" /> | |
| <shortcut refid="nextPlot" value="Cmd+Alt+F12" /> | |
| <shortcut refid="logFocusedElement" value="Ctrl+Shift+`" /> | |
| <shortcut refid="setWorkingDir" value="Ctrl+Shift+H" /> | |
| <shortcut refid="synctexSearch" value="Cmd+F8" /> | |
| <shortcut refid="checkSpelling" value="F7" /> | |
| <shortcut refid="refreshSuperDevMode" value="Cmd+Shift+F9"/> | |
| <shortcut refid="viewerSaveAllAndRefresh" value="Cmd+Shift+F5"/> | |
| <shortcut refid="helpKeyboardShortcuts" value="Alt+Shift+K"/> | |
| <shortcut refid="toggleFullScreen" value="Ctrl+Meta+F" if="org.rstudio.core.client.BrowseCap.isMacintoshDesktop()"/> | |
| <shortcut refid="showOptions" value="Meta+," if="org.rstudio.core.client.BrowseCap.isMacintosh() && !org.rstudio.core.client.BrowseCap.isSafariOrFirefox()"/> | |
| <shortcut refid="showOptions" value="Meta+Alt+," if="org.rstudio.core.client.BrowseCap.isMacintosh() && org.rstudio.core.client.BrowseCap.isSafariOrFirefox()"/> | |
| <shortcut refid="projectOptions" value="Shift+Meta+," if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="goToHelp" value="Ctrl+C Ctrl+V" disableModes="default,vim,sublime"/> | |
| <shortcut refid="helpSearch" value="Ctrl+Alt+F1"/> | |
| <shortcut refid="helpBack" value="Shift+Alt+F2"/> | |
| <shortcut refid="helpForward" value="Shift+Alt+F3"/> | |
| <shortcut refid="showCommandPalette" value="Cmd+Shift+P" if="!(org.rstudio.core.client.BrowseCap.isFirefox() && org.rstudio.core.client.BrowseCap.isWindows())" /> | |
| <shortcut refid="showCommandPalette" value="Ctrl+Alt+Shift+P" if="org.rstudio.core.client.BrowseCap.isFirefox() && org.rstudio.core.client.BrowseCap.isWindows()" /> | |
| </shortcutgroup> | |
| <shortcutgroup name="Console"> | |
| <shortcut refid="consoleClear" value="Ctrl+L" disableModes="emacs"/> | |
| <shortcut value="Cmd+Up" title="Popup Command History"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Terminal"> | |
| <shortcut refid="newTerminal" value="Alt+Shift+R"/> | |
| <shortcut refid="activateTerminal" value="Alt+Shift+M"/> | |
| <shortcut refid="previousTerminal" value="Shift+Alt+F11"/> | |
| <shortcut refid="nextTerminal" value="Shift+Alt+F12"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Main Menu (Server)"> | |
| <shortcut refid="showFileMenu" value="Ctrl+Alt+F" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showFileMenu" value="Alt+Shift+F" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showEditMenu" value="Ctrl+Alt+I" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showEditMenu" value="Alt+Shift+E" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showCodeMenu" value="Ctrl+Alt+C" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showCodeMenu" value="Alt+Shift+C" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showViewMenu" value="Ctrl+Alt+V" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showViewMenu" value="Alt+Shift+V" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showPlotsMenu" value="Ctrl+Alt+P" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showPlotsMenu" value="Alt+Shift+P" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showSessionMenu" value="Ctrl+Alt+S" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showSessionMenu" value="Alt+Shift+S" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showBuildMenu" value="Ctrl+Alt+B" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showBuildMenu" value="Alt+Shift+B" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showDebugMenu" value="Ctrl+Alt+U" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showDebugMenu" value="Alt+Shift+U" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showProfileMenu" value="Ctrl+Alt+O" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showProfileMenu" value="Alt+Shift+I" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showToolsMenu" value="Ctrl+Alt+T" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showToolsMenu" value="Alt+Shift+T" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showHelpMenu" value="Ctrl+Alt+H" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="showHelpMenu" value="Alt+Shift+H" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| </shortcutgroup> | |
| <shortcutgroup name="Accessibility"> | |
| <shortcut refid="toggleScreenReaderSupport" value="Ctrl+Alt+/" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="toggleScreenReaderSupport" value="Alt+Shift+/" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="focusConsoleOutputEnd" value="Ctrl+Alt+2" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="focusConsoleOutputEnd" value="Alt+Shift+2" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="focusConsoleOutputEnd" value="Ctrl+`"/> | |
| <shortcut refid="focusNextPane" value="F6"/> | |
| <shortcut refid="focusPreviousPane" value="Shift+F6"/> | |
| <shortcut refid="toggleTabKeyMovesFocus" value="Ctrl+Alt+[" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="toggleTabKeyMovesFocus" value="Alt+Shift+[" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="speakEditorLocation" value="Ctrl+Alt+1" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="speakEditorLocation" value="Alt+Shift+1" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="focusMainToolbar" value="Ctrl+Alt+Y" if="org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| <shortcut refid="focusMainToolbar" value="Alt+Shift+Y" if="!org.rstudio.core.client.BrowseCap.isMacintosh()"/> | |
| </shortcutgroup> | |
| <!-- | |
| Shortcuts in this group won't be shown in the quick reference card. | |
| --> | |
| <shortcutgroup name="Not Displayed"> | |
| <shortcut refid="layoutZoomSource" value="Ctrl+Shift+1"/> | |
| <shortcut refid="layoutZoomConsole" value="Ctrl+Shift+2"/> | |
| <shortcut refid="layoutZoomHelp" value="Ctrl+Shift+3"/> | |
| <shortcut refid="layoutZoomHistory" value="Ctrl+Shift+4"/> | |
| <shortcut refid="layoutZoomFiles" value="Ctrl+Shift+5"/> | |
| <shortcut refid="layoutZoomPlots" value="Ctrl+Shift+6"/> | |
| <shortcut refid="layoutZoomPackages" value="Ctrl+Shift+7"/> | |
| <shortcut refid="layoutZoomEnvironment" value="Ctrl+Shift+8"/> | |
| <shortcut refid="layoutZoomViewer" value="Ctrl+Shift+9"/> | |
| <shortcut refid="layoutZoomVcs" value="Ctrl+Shift+F1"/> | |
| <shortcut refid="layoutZoomBuild" value="Ctrl+Shift+F2"/> | |
| <shortcut refid="layoutZoomConnections" value="Ctrl+Shift+F5"/> | |
| <shortcut refid="layoutZoomTutorial" value="Ctrl+Shift+F6"/> | |
| <shortcut refid="layoutZoomLeftColumn" value="Ctrl+Alt+Shift+F12"/> | |
| <shortcut refid="layoutZoomRightColumn" value="Ctrl+Alt+Shift+F11"/> | |
| </shortcutgroup> | |
| </shortcuts> | |
| <!-- | |
| Valid cmd attributes: | |
| id The unique name for this command. There must be a matching | |
| method with this name on the CommandBundle subinterface. | |
| label The user-visible name for this command. Will be used on | |
| buttons and menus unless overridden by menuLabel or | |
| buttonLabel. | |
| menuLabel The name that will be displayed in the main menu and/or | |
| popup menus. | |
| buttonLabel The name that will be displayed on toolbar buttons. | |
| desc A short description to be used as a tooltip. | |
| enabled [true|false] Whether the command should start out as enabled | |
| or disabled. Defaults to true. | |
| visible [true|false] Whether the command should start out as visible | |
| or hidden. Defaults to true. | |
| rebindable [true|false] Whether this command should be rebindable by the | |
| user to different keyboard shortcuts. Defaults to true. | |
| --> | |
| <cmd id="setWorkingDirToProjectDir" | |
| label="Set Working Directory to Project Directory" | |
| buttonLabel="" | |
| menuLabel="To _Project Directory" | |
| desc="Change working directory to project root directory"/> | |
| <cmd id="setWorkingDirToActiveDoc" | |
| label="Set Working Directory to Current Document's Directory" | |
| buttonLabel="" | |
| menuLabel="To _Source File Location" | |
| desc="Change working directory to path of active document"/> | |
| <cmd id="setWorkingDirToFilesPane" | |
| label="Set Working Directory to Directory in Files Pane" | |
| buttonLabel="" | |
| menuLabel="To _Files Pane Location" | |
| desc="Change working directory to location of Files pane"/> | |
| <cmd id="setWorkingDir" | |
| label="Set Working Directory..." | |
| buttonLabel="" | |
| menuLabel="_Choose Directory..." | |
| desc="Select and change to a new working directory"/> | |
| <cmd id="newSourceDoc" | |
| label="Create a New R Script" | |
| buttonLabel="" | |
| menuLabel="_R Script" | |
| desc="Create a new R script"/> | |
| <cmd id="newRNotebook" | |
| menuLabel="R _Notebook" | |
| desc="Create a new R Markdown notebook" /> | |
| <cmd id="newTextDoc" | |
| menuLabel="_Text File" | |
| desc="Create a new text file" | |
| rebindable="false"/> | |
| <cmd id="newCDoc" | |
| menuLabel="_C File" | |
| desc="Create a new C file" | |
| rebindable="false"/> | |
| <cmd id="newCppDoc" | |
| menuLabel="_C++ File" | |
| desc="Create a new C++ file" | |
| rebindable="false"/> | |
| <cmd id="newHeaderDoc" | |
| menuLabel="_Header File" | |
| desc="Create a new header file" | |
| rebindable="false"/> | |
| <cmd id="newMarkdownDoc" | |
| menuLabel="_Markdown File" | |
| desc="Create a new Markdown document" | |
| rebindable="false"/> | |
| <cmd id="newPythonDoc" | |
| menuLabel="_Python Script" | |
| desc="Create a new Python script" | |
| rebindable="false"/> | |
| <cmd id="newShellDoc" | |
| menuLabel="_Shell Script" | |
| desc="Create a new shell script" | |
| rebindable="false"/> | |
| <cmd id="newStanDoc" | |
| menuLabel="_Stan File" | |
| desc="Create a new Stan program" | |
| rebindable="false"/> | |
| <cmd id="newHtmlDoc" | |
| menuLabel="_HTML File" | |
| desc="Create a new HTML file" | |
| rebindable="false"/> | |
| <cmd id="newJavaScriptDoc" | |
| menuLabel="_JavaScript File" | |
| desc="Create a new JavaScript file" | |
| rebindable="false"/> | |
| <cmd id="newCssDoc" | |
| menuLabel="_CSS File" | |
| desc="Create a new CSS file" | |
| rebindable="false"/> | |
| <cmd id="newD3Doc" | |
| menuLabel="_D3 Script" | |
| desc="Create a new D3 Script" | |
| rebindable="false"/> | |
| <cmd id="newRPlumberDoc" | |
| menuLabel="Plumber _API..." | |
| desc="Create a new Plumber API" | |
| rebindable="false"/> | |
| <cmd id="rcppHelp" | |
| desc="Help on using Rcpp" | |
| rebindable="false"/> | |
| <cmd id="printCppCompletions" | |
| desc="Print C++ Completions" | |
| rebindable="false"/> | |
| <cmd id="newSweaveDoc" | |
| menuLabel="R _Sweave" | |
| desc="Create a new R Sweave document" | |
| rebindable="false"/> | |
| <cmd id="newRMarkdownDoc" | |
| menuLabel="R _Markdown..." | |
| desc="Create a new R Markdown document" | |
| rebindable="false"/> | |
| <cmd id="newRShinyApp" | |
| menuLabel="Shiny _Web App..." | |
| desc="Create a new Shiny web application" | |
| rebindable="false"/> | |
| <cmd id="newRHTMLDoc" | |
| menuLabel="R _HTML" | |
| desc="Create a new R HTML document" | |
| rebindable="false"/> | |
| <cmd id="newRPresentationDoc" | |
| menuLabel="R _Presentation" | |
| desc="Create a new R presentation" | |
| rebindable="false"/> | |
| <cmd id="newRDocumentationDoc" | |
| menuLabel="R Doc_umentation..." | |
| desc="Create a new Rd documentation file" | |
| rebindable="false"/> | |
| <cmd id="newSqlDoc" | |
| menuLabel="S_QL Script" | |
| desc="Create a new SQL script" | |
| rebindable="false"/> | |
| <cmd id="openSourceDoc" | |
| label="Open File..." | |
| menuLabel="_Open File..." | |
| buttonLabel="" | |
| desc="Open an existing file"/> | |
| <cmd id="openSourceDocNewColumn" | |
| label="Open File in New Column..." | |
| menuLabel="Open File in New C_olumn..." | |
| buttonLabel="" | |
| desc="Open an existing file in a new column"/> | |
| <cmd id="reopenSourceDocWithEncoding" | |
| label="Reopen Current Document with Encoding..." | |
| menuLabel="Reopen with _Encoding..." | |
| buttonLabel="" | |
| desc="Reopen the current file with a different encoding"/> | |
| <cmd id="saveSourceDoc" | |
| label="Save Current Document" | |
| menuLabel="_Save" | |
| buttonLabel="" | |
| desc="Save current document"/> | |
| <cmd id="renameSourceDoc" | |
| label="Rename Current Document" | |
| menuLabel="_Rename" | |
| buttonLabel="" | |
| desc="Rename current document"/> | |
| <cmd id="copySourceDocPath" | |
| label="Copy Document Path" | |
| menuLabel="Copy Path" | |
| buttonLabel="" | |
| desc="Copy current document path"/> | |
| <cmd id="saveSourceDocAs" | |
| label="Save Current Document As..." | |
| menuLabel="Save _As..." | |
| buttonLabel="Save as" | |
| desc="Save current file to a specific path" /> | |
| <cmd id="saveAllSourceDocs" | |
| label="Save All Source Documents" | |
| menuLabel="Sa_ve All" | |
| buttonLabel="" | |
| desc="Save all open documents" | |
| windowMode="main"/> | |
| <cmd id="saveSourceDocWithEncoding" | |
| label="Save Current Document with Encoding..." | |
| menuLabel="Save wit_h Encoding..." | |
| desc="Save the current file with a different encoding"/> | |
| <cmd id="closeSourceDoc" | |
| label="Close Current Document" | |
| menuLabel="_Close" | |
| enabled="false"/> | |
| <cmd id="closeAllSourceDocs" | |
| label="Close All Documents" | |
| menuLabel="C_lose All"/> | |
| <cmd id="closeOtherSourceDocs" | |
| label="Close Other Documents" | |
| menuLabel="Close All E_xcept Current"/> | |
| <cmd id="vcsFileDiff" | |
| label="Show Differences for File" | |
| menuLabel="_Diff of" | |
| desc="Show differences for the file" | |
| context="vcs" | |
| rebindable="false"/> | |
| <cmd id="vcsFileLog" | |
| label="Show Changelog for File" | |
| menuLabel="_Log of" | |
| desc="Show log of changes to the file" | |
| context="vcs" | |
| rebindable="false"/> | |
| <cmd id="vcsFileRevert" | |
| label="Revert Changes to File" | |
| menuLabel="_Revert" | |
| desc="Revert changes to the file" | |
| context="vcs" | |
| rebindable="false"/> | |
| <cmd id="vcsViewOnGitHub" | |
| label="View file on GitHub" | |
| menuLabel="_View FILE on GitHub" | |
| desc="View this file on Github" | |
| context="vcs" | |
| rebindable="false"/> | |
| <cmd id="vcsBlameOnGitHub" | |
| label="View 'git blame' on GitHub" | |
| menuLabel="_Blame FILE on GitHub" | |
| desc="Blame view for this file on Github" | |
| context="vcs" | |
| rebindable="false"/> | |
| <cmd id="printSourceDoc" | |
| menuLabel="Pr_int..." | |
| buttonLabel="" | |
| desc="Print the current file" | |
| rebindable="false"/> | |
| <cmd id="popoutDoc" | |
| label="Show Document in New Window" | |
| buttonLabel="" | |
| desc="Show in new window"/> | |
| <cmd id="returnDocToMain" | |
| label="Return Document to Main Window" | |
| buttonLabel="" | |
| desc="Return to main window"/> | |
| <cmd id="mru0" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru1" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru2" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru3" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru4" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru5" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru6" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru7" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru8" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru9" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru10" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru11" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru12" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru13" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="mru14" visible="false" windowMode="main" rebindable="false"/> | |
| <cmd id="clearRecentFiles" | |
| menuLabel="_Clear List" | |
| rebindable="false"/> | |
| <cmd id="newProject" | |
| label="Create a New Project..." | |
| menuLabel="New _Project..." | |
| buttonLabel="" | |
| desc="Create a project" | |
| windowMode="main"/> | |
| <cmd id="openProject" | |
| label="Open Project..." | |
| menuLabel="Ope_n Project..." | |
| buttonLabel="" | |
| desc="Open a project" | |
| windowMode="main"/> | |
| <cmd id="openProjectInNewWindow" | |
| label="Open Project with New R Session" | |
| menuLabel="Open Project in Ne_w Session..." | |
| buttonLabel="" | |
| desc="Open project in a new R session" | |
| windowMode="main"/> | |
| <cmd id="shareProject" | |
| label="Share Project..." | |
| menuLabel="S_hare Project..." | |
| buttonLabel="" | |
| desc="Share this project with others" | |
| windowMode="main"/> | |
| <cmd id="openSharedProject" | |
| label="Open Shared Project" | |
| menuLabel="More..." | |
| desc="Open a project shared with you" | |
| windowMode="main"/> | |
| <cmd id="projectMru0" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru1" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru2" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru3" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru4" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru5" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru6" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru7" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru8" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru9" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru10" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru11" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru12" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru13" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="projectMru14" visible="false" rebindable="false" windowMode="main"/> | |
| <cmd id="clearRecentProjects" | |
| menuLabel="_Clear Project List" | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="closeProject" | |
| label="Close Current Project" | |
| menuLabel="Close Projec_t" | |
| buttonLabel="" | |
| desc="Close the currently open project" | |
| windowMode="main"/> | |
| <cmd id="projectOptions" | |
| label="Edit Project Options..." | |
| menuLabel="_Project Options..." | |
| buttonLabel="" | |
| desc="Edit options for the current project" | |
| windowMode="main"/> | |
| <cmd id="projectSweaveOptions" | |
| menuLabel="" | |
| buttonLabel="" | |
| desc=""/> | |
| <cmd id="showToolbar" | |
| menuLabel="Show _Toolbar" | |
| rebindable="false"/> | |
| <cmd id="hideToolbar" | |
| menuLabel="Hide _Toolbar" | |
| rebindable="false"/> | |
| <cmd id="toggleToolbar" | |
| label="Toggle Visibility of Toolbar" | |
| menuLabel="Toggle Toolbar"/> | |
| <cmd id="zoomActualSize" | |
| menuLabel="Actual _Size"/> | |
| <cmd id="zoomIn" | |
| menuLabel="_Zoom In"/> | |
| <cmd id="zoomOut" | |
| menuLabel="Zoom O_ut"/> | |
| <cmd id="goToFileFunction" | |
| label="Go To File/Function..." | |
| menuLabel="Go To File/F_unction..."/> | |
| <cmd id="switchFocusSourceConsole" | |
| label="Switch Focus between Source/Console"/> | |
| <cmd id="activateSource" | |
| label="Move Focus to Source" | |
| menuLabel="Move Focus to Sou_rce"/> | |
| <cmd id="activateConsolePane" | |
| label="Move Focus to Console Panel" | |
| menuLabel="Move Focus to _Console Panel" | |
| windowMode="main"/> | |
| <cmd id="activateConsole" | |
| label="Move Focus to Console" | |
| menuLabel="Move Focus to _Console" | |
| windowMode="main"/> | |
| <cmd id="activateEnvironment" | |
| label="Show Environment Pane" | |
| menuLabel="Show _Environment" | |
| windowMode="main"/> | |
| <cmd id="activateData" | |
| label="Show Data Pane" | |
| menuLabel="Show _Data" | |
| windowMode="main"/> | |
| <cmd id="activateHistory" | |
| label="Show History Pane" | |
| menuLabel="Show Histor_y" | |
| windowMode="main"/> | |
| <cmd id="activateFiles" | |
| label="Show Files Pane" | |
| menuLabel="Show F_iles" | |
| windowMode="main"/> | |
| <cmd id="activatePlots" | |
| label="Show Plots Pane" | |
| menuLabel="Show Pl_ots" | |
| windowMode="main"/> | |
| <cmd id="activatePackages" | |
| label="Show Packages Pane" | |
| menuLabel="Show Pac_kages" | |
| windowMode="main"/> | |
| <cmd id="activateHelp" | |
| label="Show Help Pane" | |
| menuLabel="Move Focus to _Help" | |
| windowMode="main"/> | |
| <cmd id="activateVcs" | |
| label="Show VCS Pane" | |
| menuLabel="Show _Vcs" | |
| windowMode="main"/> | |
| <cmd id="activateBuild" | |
| label="Show Build Pane" | |
| menuLabel="Show _Build" | |
| windowMode="main"/> | |
| <cmd id="activateViewer" | |
| label="Show Viewer Pane" | |
| menuLabel="Show Vie_wer" | |
| windowMode="main"/> | |
| <cmd id="activatePresentation" | |
| label="Show Presentation Pane" | |
| menuLabel="Show Prese_ntation" | |
| windowMode="main"/> | |
| <cmd id="activateConnections" | |
| label="Show Connections Pane" | |
| menuLabel = "Show Co_nnections" | |
| windowMode="main"/> | |
| <cmd id="activateTutorial" | |
| label="Show Tutorial Pane" | |
| menuLabel="Show _Tutorial" | |
| windowMode="main"/> | |
| <cmd id="activateJobs" | |
| label="Show Jobs Pane" | |
| menuLabel = "Show _Jobs" | |
| windowMode="main"/> | |
| <cmd id="activateLauncherJobs" | |
| label="Show Launcher Pane" | |
| menuLabel = "Show _Launcher" | |
| windowMode="main"/> | |
| <cmd id="activateCompilePDF" | |
| label="Show Compile PDF Pane" | |
| menuLabel = "Show Compile _PDF" | |
| windowMode="main"/> | |
| <cmd id="activateFindInFiles" | |
| label="Show Find in Files" | |
| menuLabel="Show _Find in Files" | |
| windowMode="main"/> | |
| <cmd id="activateSourceCpp" | |
| label="Show Source Cpp Pane" | |
| menuLabel="Show Sou_rce Cpp" | |
| windowMode="main"/> | |
| <cmd id="activateRMarkdown" | |
| label="Show R Markdown Pane" | |
| menuLabel = "Show _R Markdown" | |
| windowMode="main"/> | |
| <cmd id="activateDeployContent" | |
| label="Show Deploy Content Pane" | |
| menuLabel = "Show Deploy _Content" | |
| windowMode="main"/> | |
| <cmd id="activateMarkers" | |
| label="Show Markers Pane" | |
| menuLabel = "Show _Markers" | |
| windowMode="main"/> | |
| <cmd id="activateSQLResults" | |
| label="Show SQL Results Pane" | |
| menuLabel = "Show S_QL Results" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomSource" | |
| checkable="true" | |
| label="Zoom Source" | |
| menuLabel="Zoom Sou_rce"/> | |
| <cmd id="layoutZoomConsolePane" | |
| checkable="true" | |
| label="Zoom Console Pane" | |
| menuLabel="Zoom Console Pane" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomConsole" | |
| checkable="true" | |
| label="Zoom Console" | |
| menuLabel="Zoom _Console" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomEnvironment" | |
| checkable="true" | |
| label="Zoom Environment" | |
| menuLabel="Zoom _Environment" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomHistory" | |
| checkable="true" | |
| label="Zoom History" | |
| menuLabel="Zoom Histor_y" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomFiles" | |
| checkable="true" | |
| label="Zoom Files" | |
| menuLabel="Zoom F_iles" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomPlots" | |
| checkable="true" | |
| label="Zoom Plots" | |
| menuLabel="Zoom Pl_ots" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomPackages" | |
| checkable="true" | |
| label="Zoom Packages" | |
| menuLabel="Zoom P_ackages" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomHelp" | |
| checkable="true" | |
| label="Zoom Help" | |
| menuLabel="Zoom _Help" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomVcs" | |
| checkable="true" | |
| label="Zoom VCS" | |
| menuLabel="Zoom _VCS" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomTutorial" | |
| checkable="true" | |
| label="Zoom Tutorial" | |
| menuLabel="Zoom _Tutorial" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomBuild" | |
| checkable="true" | |
| label="Zoom Build" | |
| menuLabel="Zoom _Build" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomViewer" | |
| checkable="true" | |
| label="Zoom Viewer" | |
| menuLabel="Zoom Vie_wer" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomConnections" | |
| checkable="true" | |
| label="Zoom Connections" | |
| menuLabel="Zoom Co_nnections" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomCurrentPane" | |
| checkable="true" | |
| label="Toggle Zoom for Current Pane"/> | |
| <cmd id="layoutEndZoom" | |
| checkable="true" | |
| label="Show All Panes" | |
| menuLabel="_Show All Panes" | |
| windowMode="main"/> | |
| <cmd id="newSourceColumn" | |
| label="Add Source Column" | |
| menuLabel="_Add Source Column" | |
| windowMode="main"/> | |
| <cmd id="layoutConsoleOnLeft" | |
| radio="true" | |
| label="Console on Left" | |
| menuLabel="Console on _Left" | |
| windowMode="main"/> | |
| <cmd id="layoutConsoleOnRight" | |
| radio="true" | |
| label="Console on Right" | |
| menuLabel="Console on _Right" | |
| windowMode="main"/> | |
| <cmd id="layoutZoomLeftColumn" | |
| checkable="true" | |
| label="Zoom Left / Center Column" | |
| menuLabel="_Zoom Left / Center Column"/> | |
| <cmd id="layoutZoomRightColumn" | |
| checkable="true" | |
| label="Zoom Right Column" | |
| menuLabel="Zoo_m Right Column"/> | |
| <cmd id="jumpTo" | |
| label="Jump To..." | |
| menuLabel="_Jump To..." | |
| context="editor"/> | |
| <cmd id="switchToTab" | |
| label="Switch to Tab..." | |
| menuLabel="Switch to Ta_b..."/> | |
| <cmd id="previousTab" | |
| label="Open Previous Tab" | |
| menuLabel="_Previous Tab"/> | |
| <cmd id="nextTab" | |
| label="Open Next Tab" | |
| menuLabel="_Next Tab"/> | |
| <cmd id="firstTab" | |
| label="Open First Tab" | |
| menuLabel="_First Tab"/> | |
| <cmd id="lastTab" | |
| label="Open Last Tab" | |
| menuLabel="_Last Tab"/> | |
| <cmd id="moveTabLeft" | |
| label="Move Tab Left" | |
| menuLabel="Move Tab Lef_t"/> | |
| <cmd id="moveTabRight" | |
| label="Move Tab Right" | |
| menuLabel="Move Tab _Right"/> | |
| <cmd id="moveTabToFirst" | |
| label="Move Tab to First" | |
| menuLabel="Move Tab to _First"/> | |
| <cmd id="moveTabToLast" | |
| label="Move Tab to Last" | |
| menuLabel="Move Tab to La_st"/> | |
| <cmd id="goToLine" | |
| label="Go to Line..." | |
| menuLabel="_Go to Line..."/> | |
| <cmd id="toggleFullScreen" | |
| menuLabel="Toggle _Full Screen"/> | |
| <cmd id="findFromSelection" | |
| context="editor" | |
| menuLabel="_Use Selection for Find"/> | |
| <cmd id="quickAddNext" | |
| label="Find and Add Next" | |
| buttonLabel="Add" | |
| menuLabel="Find and Add Next" | |
| context="editor" | |
| desc="Find and add next occurence"/> | |
| <cmd id="findAll" | |
| label="Find All" | |
| context="editor"/> | |
| <cmd id="findReplace" | |
| label="Find / Replace Text..." | |
| context="editor" | |
| menuLabel="_Find..."/> | |
| <cmd id="findNext" | |
| label="Find Next Occurence" | |
| buttonLabel="Next" | |
| menuLabel="Find _Next" | |
| desc="Find next occurrence" | |
| context="editor" | |
| rebindable="false"/> | |
| <cmd id="findPrevious" | |
| label="Find Previous Occurence" | |
| buttonLabel="Prev" | |
| menuLabel="Find Pre_vious" | |
| desc="Find previous occurrence" | |
| context="editor" | |
| rebindable="false"/> | |
| <cmd id="findSelectAll" | |
| label="Find and Select All" | |
| buttonLabel="All" | |
| menuLabel="Find And Select All" | |
| context="editor" | |
| desc="Find and select all matches" | |
| rebindable="false"/> | |
| <cmd id="replaceAndFind" | |
| label="Replace and Find Next" | |
| buttonLabel="Replace" | |
| menuLabel="_Replace and Find" | |
| desc="Replace and find next occurrence" | |
| context="editor" | |
| rebindable="false"/> | |
| <cmd id="findInFiles" | |
| menuLabel="Find _in Files..." | |
| windowMode="main"/> | |
| <cmd id="fold" | |
| label="Collapse Fold" | |
| context="editor" | |
| menuLabel="_Collapse"/> | |
| <cmd id="unfold" | |
| label="Expand Fold" | |
| context="editor" | |
| menuLabel="E_xpand"/> | |
| <cmd id="foldAll" | |
| label="Collapse All Folds" | |
| context="editor" | |
| menuLabel="Collapse _All"/> | |
| <cmd id="unfoldAll" | |
| label="Expand All Folds" | |
| context="editor" | |
| menuLabel="Ex_pand All"/> | |
| <cmd id="jumpToMatching" | |
| label="Jump to Matching Bracket" | |
| menuLabel="Jump To _Matching" | |
| desc="Jump to matching bracket" | |
| context="editor"/> | |
| <cmd id="expandToMatching" | |
| label="Expand to Matching Bracket" | |
| menuLabel="Expand To _Matching" | |
| desc="Expand selection to matching bracket" | |
| context="editor"/> | |
| <cmd id="addCursorAbove" | |
| menuLabel="Add Cursor Above Current Cursor" | |
| context="editor"/> | |
| <cmd id="addCursorBelow" | |
| menuLabel="Add Cursor Below Current Cursor" | |
| context="editor"/> | |
| <cmd id="moveLinesUp" | |
| menuLabel="Move Lines Up" | |
| context="editor"/> | |
| <cmd id="moveLinesDown" | |
| menuLabel="Move Lines Down" | |
| context="editor"/> | |
| <cmd id="expandToLine" | |
| menuLabel="Expand Selection to Line" | |
| context="editor"/> | |
| <cmd id="copyLinesDown" | |
| menuLabel="Copy Lines Down" | |
| context="editor"/> | |
| <cmd id="joinLines" | |
| menuLabel="Join Lines" | |
| context="editor"/> | |
| <cmd id="removeLine" | |
| menuLabel="Remove Line" | |
| context="editor"/> | |
| <cmd id="splitIntoLines" | |
| menuLabel="Split Into Lines" | |
| desc="Create a new cursor on each line in current selection" | |
| context="editor"/> | |
| <cmd id="editLinesFromStart" | |
| menuLabel="Edit Lines from Start" | |
| desc="Create a new cursor at start of each line in selection" | |
| context="editor"/> | |
| <cmd id="executeAllCode" | |
| label="Run All Code in Current Source File" | |
| buttonLabel="" | |
| menuLabel="Run _All" | |
| desc="Run all of the code in the source file" | |
| context="r"/> | |
| <cmd id="executeCode" | |
| label="Run Current Line or Selection" | |
| buttonLabel="Run" | |
| menuLabel="Run Selected _Line(s)" | |
| desc="Run the current line or selection" | |
| context="r"/> | |
| <cmd id="executeCodeWithoutMovingCursor" | |
| label="Run Current Line or Selection (Without Moving Cursor)" | |
| buttonLabel="Run" | |
| menuLabel="Run _Line(s) without moving cursor" | |
| desc="Run the current line or selection without moving the cursor" | |
| context="r"/> | |
| <cmd id="executeCodeWithoutFocus" | |
| rebindable="false"/> | |
| <cmd id="executeToCurrentLine" | |
| label="Execute Code up to Current Line" | |
| menuLabel="Run From _Beginning To Line" | |
| desc="Run from the beginning of the source file up through the current line" | |
| context="r"/> | |
| <cmd id="executeFromCurrentLine" | |
| label="Execute Code From Current Line to End of Document" | |
| menuLabel="Run From Line to _End" | |
| desc="Run from the current line through the end of the source file" | |
| context="r"/> | |
| <cmd id="executeCurrentFunction" | |
| label="Run Current Function Definition" | |
| menuLabel="Run _Function Definition" | |
| desc="Run the top-level function definition, if any, that contains the cursor" | |
| context="r"/> | |
| <cmd id="executeCurrentSection" | |
| label="Execute Current Code Section" | |
| buttonLabel="Run Section" | |
| menuLabel="Run Code _Section" | |
| desc="Run the code section that contains the cursor" | |
| context="r"/> | |
| <cmd id="executeLastCode" | |
| label="Re-Run Previous Code Execution" | |
| buttonLabel="" | |
| menuLabel="Re-Run _Previous" | |
| desc="Re-run the previous code region" | |
| context="r"/> | |
| <cmd id="executeCurrentLine" | |
| label="Execute Current Line" | |
| menuLabel="Execute Current _Line" | |
| desc="Execute the line which contains the cursor" | |
| context="r"/> | |
| <cmd id="executeCurrentStatement" | |
| label="Execute Current Statement" | |
| menuLabel="Execute Current _Statement" | |
| desc="Execute the entire R statement which contains the cursor." | |
| context="r"/> | |
| <cmd id="executeCurrentParagraph" | |
| label="Execute Current Paragraph" | |
| menuLabel="Execute Current _Paragraph" | |
| desc="Execute the current paragraph of code, delimited by blank lines." | |
| context="r"/> | |
| <cmd id="insertChunk" | |
| menuLabel="_Insert Chunk" | |
| desc="Insert a new code chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkR" | |
| menuLabel="R" | |
| desc="Insert a new R chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkBash" | |
| menuLabel="Bash" | |
| desc="Insert a new Bash chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkD3" | |
| menuLabel="D3" | |
| desc="Insert a new D3 chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkPython" | |
| menuLabel="Python" | |
| desc="Insert a new Python chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkRCPP" | |
| menuLabel="Rcpp" | |
| desc="Insert a new Rcpp chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkStan" | |
| menuLabel="Stan" | |
| desc="Insert a new Stan chunk" | |
| context="editor"/> | |
| <cmd id="insertChunkSQL" | |
| menuLabel="SQL" | |
| desc="Insert a new SQL chunk" | |
| context="editor"/> | |
| <cmd id="switchToChunkR" | |
| menuLabel="R" | |
| desc="Switch chunk to R" | |
| context="editor"/> | |
| <cmd id="switchToChunkBash" | |
| menuLabel="Bash" | |
| desc="Switch chunk to Bash" | |
| context="editor"/> | |
| <cmd id="switchToChunkPython" | |
| menuLabel="Python" | |
| desc="Switch chunk to Python" | |
| context="editor"/> | |
| <cmd id="switchToChunkRCPP" | |
| menuLabel="Rcpp" | |
| desc="Switch chunk to Rcpp" | |
| context="editor"/> | |
| <cmd id="switchToChunkStan" | |
| menuLabel="Stan" | |
| desc="Switch chunk to Stan" | |
| context="editor"/> | |
| <cmd id="switchToChunkSQL" | |
| menuLabel="SQL" | |
| desc="Switch chunk to SQL" | |
| context="editor"/> | |
| <cmd id="insertSection" | |
| menuLabel="_Insert Section..." | |
| desc="Insert a new code section" | |
| context="editor"/> | |
| <cmd id="executePreviousChunks" | |
| menuLabel="_Run All Chunks Above" | |
| desc="Run all chunks above the current one" | |
| context="r"/> | |
| <cmd id="executeSubsequentChunks" | |
| menuLabel="Run All C_hunks Below" | |
| desc="Run all chunks below the current one" | |
| context="r"/> | |
| <cmd id="executeCurrentChunk" | |
| menuLabel="Run _Current Chunk" | |
| desc="Run the current code chunk" | |
| context="rmarkdown"/> | |
| <cmd id="executeNextChunk" | |
| menuLabel="Run _Next Chunk" | |
| desc="Run the next code chunk" | |
| context="r"/> | |
| <cmd id="executeSetupChunk" | |
| menuLabel="Run _Setup Chunk" | |
| desc="Run the initial setup chunk" | |
| context="r"/> | |
| <cmd id ="goToHelp" | |
| label="Show Help for Current Function" | |
| menuLabel="Go To _Help" | |
| desc="Go to help for the currently selected function" | |
| context="help"/> | |
| <cmd id ="goToDefinition" | |
| menuLabel="_Go To Function Definition" | |
| desc="Go to to the definition of the currently selected function" | |
| context="help"/> | |
| <cmd id="codeCompletion" | |
| label="Retrieve Completions" | |
| menuLabel="Code Completion" | |
| desc="Show code completions at the current cursor location" | |
| context="editor"/> | |
| <cmd id="sourceNavigateBack" | |
| menuLabel="Bac_k" | |
| desc="Go back to the previous source location"/> | |
| <cmd id="sourceNavigateForward" | |
| menuLabel="For_ward" | |
| desc="Go forward to the next source location"/> | |
| <cmd id="extractFunction" | |
| menuLabel="E_xtract Function" | |
| desc="Turn the current selection into a function" | |
| context="r"/> | |
| <cmd id="extractLocalVariable" | |
| menuLabel="Extract _Variable" | |
| desc="Extract a variable out of the current selection" | |
| context="r"/> | |
| <cmd id="findUsages" | |
| menuLabel="Find _Usages" | |
| desc="Find source locations where this symbol is used" | |
| context="cpp"/> | |
| <cmd id="sourceFile" | |
| buttonLabel="" | |
| menuLabel="Source _File..." | |
| desc="Source the contents of an R file" | |
| windowMode="main"/> | |
| <cmd id="previewJS" | |
| buttonLabel="Preview" | |
| menuLabel="Preview J_S" | |
| desc="Preview the active JavaScript document"/> | |
| <cmd id="previewSql" | |
| buttonLabel="Preview" | |
| menuLabel="Preview S_QL" | |
| desc="Preview the active SQL document"/> | |
| <cmd id="sourceActiveDocument" | |
| buttonLabel="Source" | |
| menuLabel="_Source" | |
| desc="Source the contents of the active document"/> | |
| <cmd id="sourceActiveDocumentWithEcho" | |
| buttonLabel="" | |
| menuLabel="Source with _Echo" | |
| desc="Source the contents of the active document (with echo)"/> | |
| <cmd id="commentUncomment" | |
| label="Comment / Uncomment Selection" | |
| menuLabel="_Comment/Uncomment Lines" | |
| desc="Comment or uncomment the current line/selection" | |
| context="editor"/> | |
| <cmd id="reformatCode" | |
| label="Reformat Current Selection" | |
| menuLabel="Re_format Code" | |
| desc="Reformat the current line/selection" | |
| context="editor"/> | |
| <cmd id="showDiagnosticsActiveDocument" | |
| label="Show Diagnostics for Current Document" | |
| menuLabel="Show _Diagnostics" | |
| desc="Show diagnostics for the active document"/> | |
| <cmd id="showDiagnosticsProject" | |
| label="Show Diagnostics for Current Project" | |
| menuLabel="Show Diagnostics (Projec_t)" | |
| desc="Show diagnostics for all source files in the current project"/> | |
| <cmd id="reindent" | |
| label="Reindent Selection" | |
| menuLabel="_Reindent Lines" | |
| desc="Reindent the current line/selection" | |
| context="editor"/> | |
| <cmd id="reflowComment" | |
| menuLabel="Reflow Co_mment" | |
| desc="Reflow selected comment lines so they wrap evenly" | |
| context="editor"/> | |
| <cmd id="renameInScope" | |
| label="Rename Symbol in Scope" | |
| menuLabel="Ren_ame in Scope" | |
| desc="Rename symbol in current scope" | |
| context="editor"/> | |
| <cmd id="insertSnippet" | |
| menuLabel="Insert Snippet" | |
| desc="Expand snippet at cursor" | |
| context="editor"/> | |
| <cmd id="insertRoxygenSkeleton" | |
| menuLabel="Insert Ro_xygen Skeleton" | |
| desc="Insert a roxygen comment for the current function" | |
| context="r"/> | |
| <cmd id="expandSelection" | |
| menuLabel="Expand Selection" | |
| desc="Expand selection" | |
| context="editor"/> | |
| <cmd id="shrinkSelection" | |
| menuLabel="Shrink Selection" | |
| desc="Shrink selection" | |
| context="editor"/> | |
| <cmd id="goToNextSection" | |
| label="Go to Next Section" | |
| buttonLabel="" | |
| desc="Go to next section/chunk" | |
| context="editor"/> | |
| <cmd id="goToPrevSection" | |
| label="Go to Previous Section" | |
| buttonLabel="" | |
| desc="Go to previous section/chunk" | |
| context="editor"/> | |
| <cmd id="goToStartOfCurrentScope" | |
| context="editor"/> | |
| <cmd id="goToEndOfCurrentScope" | |
| context="editor"/> | |
| <cmd id="goToNextChunk" | |
| label="Go to Next Chunk" | |
| desc="Go to next chunk" | |
| context="editor"/> | |
| <cmd id="goToPrevChunk" | |
| label="Go to Previous Chunk" | |
| desc="Go to previous chunk" | |
| context="editor"/> | |
| <cmd id="expandRaggedSelection" | |
| label="Expand Ragged Selection" | |
| context="editor"/> | |
| <cmd id="markdownHelp" | |
| label="Open Markdown Quick Reference" | |
| menuLabel="_Markdown Quick Reference" | |
| desc="Markdown quick reference" | |
| context="help"/> | |
| <cmd id="openRoxygenQuickReference" | |
| menuLabel="_Roxygen Quick Reference" | |
| desc="Roxygen quick reference" | |
| context="help"/> | |
| <cmd id="toggleDocumentOutline" | |
| label="Toggle Document Outline" | |
| menuLabel="_Show Document Outline" | |
| desc="Show document outline"/> | |
| <cmd id="toggleRmdVisualMode" | |
| label="Toggle Visual Markdown Editor" | |
| menuLabel="_Use Visual Editor" | |
| desc="Toggle visual markdown editor"/> | |
| <cmd id="enableProsemirrorDevTools" | |
| label="Enable Prosemirror DevTools" | |
| menuLabel="_Prosemirror DevTools" | |
| desc="Enable Prosemirror DevTools" /> | |
| <cmd id="usingRMarkdownHelp" | |
| menuLabel="_Using R Markdown" | |
| desc="Guide to using R Markdown" | |
| context="help"/> | |
| <cmd id="authoringRPresentationsHelp" | |
| menuLabel="_Authoring R Presentations" | |
| desc="Guide to using R Markdown" | |
| context="help"/> | |
| <cmd id="openRStudioIDECheatSheet" | |
| menuLabel="_RStudio IDE Cheat Sheet" | |
| desc="RStudio IDE cheat sheet" | |
| context="help"/> | |
| <cmd id="openDataVisualizationCheatSheet" | |
| menuLabel="Data Visualization with _ggplot2" | |
| desc="Data visualization with ggplot2" | |
| context="help"/> | |
| <cmd id="openPurrrCheatSheet" | |
| menuLabel="List manipulation with _purrr" | |
| desc="List manipulation with purrr" | |
| context="help"/> | |
| <cmd id="openPackageDevelopmentCheatSheet" | |
| menuLabel="Package De_velopment with devtools" | |
| desc="Package development with devtools" | |
| context="help"/> | |
| <cmd id="openDataImportCheatSheet" | |
| menuLabel="_Import Data with readr" | |
| desc="Import data with readr" | |
| context="help"/> | |
| <cmd id="openDataWranglingCheatSheet" | |
| menuLabel="Data Manipulation with dplyr, tid_yr" | |
| desc="Data manipulation with dplyr and tidyr" | |
| context="help"/> | |
| <cmd id="openDataTransformationCheatSheet" | |
| menuLabel="Data Transformation with _dplyr" | |
| desc="Data transformation with dplyr" | |
| context="help"/> | |
| <cmd id="openSparklyrCheatSheet" | |
| menuLabel="Interfacing Spar_k with sparklyr" | |
| desc="Interfacing Apache Spark with sparklyr" | |
| context="help"/> | |
| <cmd id="openRMarkdownCheatSheet" | |
| menuLabel="R _Markdown Cheat Sheet" | |
| desc="R Markdown cheat sheet" | |
| context="help"/> | |
| <cmd id="openRMarkdownReferenceGuide" | |
| menuLabel="R Markdo_wn Reference Guide" | |
| desc="R Markdown reference guide" | |
| context="help"/> | |
| <cmd id="openShinyCheatSheet" | |
| menuLabel="Web Applications with _shiny" | |
| desc="Build web applications with Shiny" | |
| context="help"/> | |
| <cmd id="browseCheatSheets" | |
| menuLabel="_Browse Cheat Sheets..." | |
| desc="Browse available cheat sheets in your web browser" | |
| context="help"/> | |
| <cmd id="knitDocument" | |
| label="Knit Current Document" | |
| buttonLabel="Knit" | |
| menuLabel="_Knit Document" | |
| desc="Knit the current document" | |
| context="r"/> | |
| <cmd id="previewHTML" | |
| label="Preview Document as HTML" | |
| buttonLabel="Preview" | |
| menuLabel="Previe_w" | |
| desc="Show a preview of the current document as HTML" | |
| context="markdown"/> | |
| <cmd id="publishHTML" | |
| label="Publish to RPubs..." | |
| buttonLabel="Publish" | |
| menuLabel="P_ublish to RPubs..." | |
| desc="Publish the current document"/> | |
| <cmd id="compilePDF" | |
| label="Compile to PDF..." | |
| buttonLabel="Compile PDF" | |
| menuLabel="_Compile PDF" | |
| desc="Compile a PDF from the current LaTeX or Sweave document" | |
| context="sweave"/> | |
| <cmd id="compileNotebook" | |
| menuLabel="_Compile Report..." | |
| desc="Compile a report from the current R script"/> | |
| <cmd id="editRmdFormatOptions" | |
| menuLabel="_Output Options..." | |
| desc="Edit the R Markdown format options for the current file" | |
| context="rmarkdown"/> | |
| <cmd id="knitWithParameters" | |
| label="Knit with Parameters..." | |
| menuLabel="Knit _with Parameters..." | |
| desc="Knit the document with a set of custom parameters"/> | |
| <cmd id="clearKnitrCache" | |
| menuLabel="Clear Knitr Cache..." | |
| desc="Clear the knitr cache for the current document"/> | |
| <cmd id="clearPrerenderedOutput" | |
| menuLabel="Clear Prerendered Output..." | |
| desc="Clear the prerendered output for the current document"/> | |
| <cmd id="notebookExpandAllOutput" | |
| buttonLabel="" | |
| menuLabel="E_xpand All Output" | |
| desc="Expand all code chunk output in the current file"/> | |
| <cmd id="notebookToggleExpansion" | |
| buttonLabel="" | |
| menuLabel="Toggle Chunk Output Expansion" | |
| desc="Expand or collapse the output of the current notebook chunk"/> | |
| <cmd id="notebookCollapseAllOutput" | |
| buttonLabel="" | |
| menuLabel="Collapse All _Output" | |
| desc="Collapse all code chunk output in the current file"/> | |
| <cmd id="notebookClearOutput" | |
| buttonLabel="" | |
| menuLabel="Cl_ear Output" | |
| desc="Clear the output of the current notebook chunk" /> | |
| <cmd id="notebookClearAllOutput" | |
| buttonLabel="" | |
| menuLabel="Clear A_ll Output" | |
| desc="Remove all code chunk output in the current file"/> | |
| <cmd id="synctexSearch" | |
| menuLabel="S_ync PDF View to Editor" | |
| buttonLabel="" | |
| desc="Sync PDF view to editor location (Ctrl+Click)"/> | |
| <cmd id="checkSpelling" | |
| menuLabel="Check _Spelling..." | |
| context="editor" | |
| desc="Check spelling in document"/> | |
| <cmd id="wordCount" | |
| menuLabel="_Word Count" | |
| context="editor" | |
| desc="Count words in selection or document"/> | |
| <cmd id="newFolder" | |
| label="Create a New Folder..." | |
| menuLabel="Folder..." | |
| buttonLabel="New Folder" | |
| context="files" | |
| desc="Create a new folder"/> | |
| <cmd id="uploadFile" | |
| label="Upload Files..." | |
| menuLabel="Upload Files..." | |
| buttonLabel="Upload" | |
| context="files" | |
| desc="Upload files to server"/> | |
| <cmd id="copyFile" | |
| label="Copy Files..." | |
| menuLabel="Copy..." | |
| buttonLabel="Copy" | |
| desc="Copy selected file or folder" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="copyFileTo" | |
| label="Copy Files To..." | |
| menuLabel="Copy To..." | |
| buttonLabel="Copy To" | |
| context="files" | |
| desc="Copy selected file or folder to another folder" | |
| rebindable="false"/> | |
| <cmd id="moveFiles" | |
| label="Move Files..." | |
| menuLabel="Move..." | |
| buttonLabel="Move" | |
| desc="Move selected files or folders" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="exportFiles" | |
| label="Export Files..." | |
| menuLabel="Export..." | |
| buttonLabel="Export" | |
| desc="Export selected files or folders" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="renameFile" | |
| label="Rename Current File..." | |
| buttonLabel="Rename" | |
| desc="Rename selected file or folder" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="deleteFiles" | |
| label="Delete Files..." | |
| buttonLabel="Delete" | |
| desc="Delete selected files or folders" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="refreshFiles" | |
| menuLabel="Refresh" | |
| desc="Refresh file listing" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="goToWorkingDir" | |
| buttonLabel="" | |
| menuLabel="Go To Working Directory" | |
| context="files" | |
| desc="View the current working directory" | |
| rebindable="false"/> | |
| <cmd id="setAsWorkingDir" | |
| label="Set As Working Directory" | |
| rebindable="false"/> | |
| <cmd id="copyFilesPaneCurrentDirectory" | |
| label="Copy Folder Path to Clipboard" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="showFolder" | |
| label="Show Folder in New Window" | |
| visible="false" | |
| windowMode="main" | |
| context="files" | |
| rebindable="false"/> | |
| <cmd id="vcsAddFiles" | |
| label="Add Files or Folders" | |
| menuLabel="Add" | |
| buttonLabel="Add" | |
| desc="Add the selected files or folders" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="vcsRemoveFiles" | |
| label="Remove Files or Folders" | |
| menuLabel="Delete" | |
| buttonLabel="Delete" | |
| desc="Delete the selected files or folders" | |
| rebindable="false" | |
| context="vcs"/> | |
| <!-- VCS pane --> | |
| <cmd id="vcsDiff" | |
| label="Diff Selected Files" | |
| buttonLabel="Diff" | |
| menuLabel="Diff" | |
| desc="Diff selected file(s)" | |
| context="vcs"/> | |
| <cmd id="vcsCommit" | |
| label="Commit Pending Changes" | |
| buttonLabel="Commit" | |
| menuLabel="_Commit..." | |
| desc="Commit pending changes" | |
| context="vcs" | |
| windowMode="review_changes"/> | |
| <cmd id="vcsRevert" | |
| label="Revert Changes" | |
| buttonLabel="Revert" | |
| menuLabel="Revert..." | |
| desc="Revert selected changes" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="vcsShowHistory" | |
| label="View History of Previous Commits" | |
| menuLabel="_History" | |
| buttonLabel="History" | |
| desc="View history of previous commits" | |
| rebindable="false" | |
| context="vcs" | |
| windowMode="main"/> | |
| <cmd id="vcsRefresh" | |
| label="Refresh File List from Source Control" | |
| desc="Refresh listing" | |
| context="vcs"/> | |
| <cmd id="vcsRefreshNoError" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="vcsOpen" | |
| label="Open Selected Files(s)" | |
| menuLabel="Open File" | |
| desc="Open selected file(s)" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="vcsIgnore" | |
| label="Ignore Files or Folders" | |
| menuLabel="Ignore..." | |
| buttonLabel="Ignore" | |
| desc="Ignore the selected files or folders" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="vcsPull" | |
| menuLabel="_Pull Branches" | |
| buttonLabel="Pull" | |
| context="vcs" | |
| windowMode="review_changes"/> | |
| <cmd id="vcsPullRebase" | |
| menuLabel="_Pull with Rebase" | |
| buttonLabel="Pull with Rebase" | |
| context="vcs" | |
| windowMode="review_changes"/> | |
| <cmd id="vcsPush" | |
| menuLabel="P_ush Branch" | |
| buttonLabel="Push" | |
| context="vcs" | |
| windowMode="review_changes"/> | |
| <cmd id="vcsCleanup" | |
| menuLabel="Cleanu_p" | |
| buttonLabel="Cleanup" | |
| desc="Recursively clean up the working copy (removing locks, etc)" | |
| rebindable="false" | |
| context="vcs" | |
| windowMode="main"/> | |
| <cmd id="vcsResolve" | |
| menuLabel="Resolve..." | |
| buttonLabel="Resolve" | |
| desc="Resolve conflicts in the selected files or folders" | |
| rebindable="false" | |
| context="vcs"/> | |
| <cmd id="consoleClear" | |
| buttonLabel="" | |
| label="Clear Console" | |
| menuLabel="Cle_ar Console" | |
| windowMode="main" | |
| desc="Clear console"/> | |
| <cmd id="clearBuild" | |
| buttonLabel="" | |
| label="Clear Build Pane Output" | |
| windowMode="main" | |
| desc="Clear build" | |
| context="packageDevelopment"/> | |
| <cmd id="interruptR" | |
| label="Interrupt R Session" | |
| buttonLabel="" | |
| menuLabel="_Interrupt R" | |
| windowMode="main" | |
| desc="Interrupt R"/> | |
| <cmd id="restartR" | |
| label="Restart R Session" | |
| menuLabel="_Restart R" | |
| desc="Restart R" | |
| windowMode="main"/> | |
| <cmd id="restartRClearOutput" | |
| label="Restart R Session and Clear Chunk Output" | |
| menuLabel="Restart R and Clear _Output" | |
| desc="Restart R session and clear chunk output" /> | |
| <cmd id="restartRRunAllChunks" | |
| label="Restart R Session and Run All Chunks" | |
| menuLabel="Restart R and Run _All Chunks" | |
| desc="Restart R session and run all chunks" /> | |
| <cmd id="terminateR" | |
| label="Terminate R Session" | |
| menuLabel="_Terminate R..." | |
| desc="Forcibly terminate R session" | |
| context="r" | |
| windowMode="main"/> | |
| <!-- PDF Viewer --> | |
| <cmd id="showPdfExternal" | |
| label="Show PDF in External Viewer" | |
| menuLabel="Show PDF in External Viewer" | |
| desc="Show in an external PDF viewer window"/> | |
| <!-- HTML Preview --> | |
| <cmd id="openHtmlExternal" | |
| label="Open Page with Web Browser" | |
| buttonLabel="" | |
| desc="View the page with the system web browser"/> | |
| <cmd id="saveHtmlPreviewAsLocalFile" | |
| menuLabel="File on Local Computer..." | |
| desc="Download the page to a local file" | |
| rebindable="false"/> | |
| <cmd id="saveHtmlPreviewAs" | |
| menuLabel="File on RStudio Server..." | |
| buttonLabel="Save As" | |
| desc="Save the page to another location" | |
| rebindable="false"/> | |
| <cmd id="showHtmlPreviewLog" | |
| buttonLabel="Log" | |
| desc="Show the compilation log for this document" | |
| rebindable="false"/> | |
| <cmd id="refreshHtmlPreview" | |
| desc="Refresh the preview" | |
| rebindable="false"/> | |
| <!-- Presentation --> | |
| <cmd id="refreshPresentation" | |
| desc="Refresh the presentation" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationFullscreen" | |
| desc="Show presentation in full screen mode" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationHome" | |
| desc="Go to the first slide" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationNext" | |
| desc="Go to the next slide" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationPrev" | |
| desc="Go to the previous slide" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationEdit" | |
| desc="Edit this slide of the presentation" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationViewInBrowser" | |
| menuLabel="_View in Browser" | |
| desc="View the presentation in an external web browser" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="presentationSaveAsStandalone" | |
| menuLabel="_Save As Web Page..." | |
| desc="Save the presentation as a standalone web page" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="clearPresentationCache" | |
| menuLabel="Clear Knitr Cache..." | |
| desc="Clear knitr cache for this presentation" | |
| rebindable="false" | |
| context="presentation"/> | |
| <cmd id="historySendToSource" | |
| label="Insert Command into Document" | |
| menuLabel="Insert into _Source" | |
| buttonLabel="To Source" | |
| desc="Insert the selected commands into the current document (Shift+Enter)" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="historySendToConsole" | |
| label="Send Command to Console" | |
| menuLabel="Send to _Console" | |
| buttonLabel="To Console" | |
| desc="Send the selected commands to the R console (Enter)" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="loadHistory" | |
| menuLabel="_Load History..." | |
| buttonLabel="" | |
| desc="Load history from an existing file" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="saveHistory" | |
| menuLabel="Sa_ve History As..." | |
| buttonLabel="" | |
| desc="Save history into a file" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="historyRemoveEntries" | |
| menuLabel="_Remove Entries..." | |
| buttonLabel="" | |
| context="history" | |
| desc="Remove the selected history entries" | |
| rebindable="false"/> | |
| <cmd id="clearHistory" | |
| menuLabel="Clear _All..." | |
| buttonLabel="" | |
| desc="Clear all history entries" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="historyDismissResults" | |
| label="Dismiss History Results" | |
| buttonLabel="Done" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="historyShowContext" | |
| label="Show In Context" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="historyDismissContext" | |
| label="Dismiss History Context" | |
| buttonLabel="« Back" | |
| context="history" | |
| rebindable="false"/> | |
| <cmd id="nextPlot" | |
| label="Show Next Plot" | |
| buttonLabel="" | |
| menuLabel="_Next Plot" | |
| desc="Next plot"/> | |
| <cmd id="previousPlot" | |
| label="Show Previous Plot" | |
| buttonLabel="" | |
| menuLabel="_Previous Plot" | |
| desc="Previous plot"/> | |
| <cmd id="savePlotAsImage" | |
| label="Save Plot As Image..." | |
| menuLabel="Save as _Image..." | |
| desc="Save the current plot as an image file"/> | |
| <cmd id="savePlotAsPdf" | |
| label="Save Plot as PDF..." | |
| menuLabel="Save as P_DF..." | |
| desc="Save the current plot as a PDF file"/> | |
| <cmd id="copyPlotToClipboard" | |
| label="Copy Current Plot to Clipboard..." | |
| menuLabel="Cop_y to Clipboard..." | |
| desc="Copy the current plot to the clipboard"/> | |
| <cmd id="zoomPlot" | |
| menuLabel="_Zoom Plot..." | |
| buttonLabel="Zoom" | |
| desc="View a larger version of the plot in a new window" | |
| rebindable="false"/> | |
| <cmd id="removePlot" | |
| label="Remove Current Plot..." | |
| buttonLabel="" | |
| menuLabel="_Remove Plot..." | |
| desc="Remove the current plot"/> | |
| <cmd id="clearPlots" | |
| label="Clear All Plots..." | |
| buttonLabel="" | |
| menuLabel="_Clear All..." | |
| desc="Clear all Plots"/> | |
| <cmd id="refreshPlot" | |
| label="Refresh Current Plot" | |
| buttonLabel="" | |
| menuLabel="Refresh" | |
| desc="Refresh current plot"/> | |
| <cmd id="showManipulator" | |
| label="Show Manipulator for Current Plot" | |
| buttonLabel="" | |
| menuLabel="Show _Manipulator" | |
| desc="Show the manipulator for this plot"/> | |
| <cmd id="clearWorkspace" | |
| menuLabel="_Clear Workspace..." | |
| desc="Clear objects from the workspace" | |
| windowMode="main"/> | |
| <cmd id="loadWorkspace" | |
| menuLabel="_Load Workspace..." | |
| windowMode="main" | |
| context="import" | |
| desc="Load workspace"/> | |
| <cmd id="saveWorkspace" | |
| menuLabel="_Save Workspace As..." | |
| windowMode="main" | |
| desc="Save workspace as"/> | |
| <cmd id="importDatasetFromFile" | |
| label="Import Dataset from File..." | |
| menuLabel="From _Local File..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromURL" | |
| label="Import Dataset from URL..." | |
| menuLabel="From _Web URL..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromCsv" | |
| label="From CSV" | |
| menuLabel="From _CSV" | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromCsvUsingReadr" | |
| label="From Text (readr)..." | |
| menuLabel="From Text (_readr)..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromCsvUsingBase" | |
| label="From Text (base)..." | |
| menuLabel="From Text (_base)..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromSAV" | |
| label="Import Dataset from SAV..." | |
| menuLabel="From _SAV..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromSAV" | |
| label="Import Dataset from SPSS..." | |
| menuLabel="From _SPSS..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromSAS" | |
| label="Import Dataset from SAS..." | |
| menuLabel="From S_AS..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromStata" | |
| label="Import Dataset from Stata..." | |
| menuLabel="From S_tata..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="importDatasetFromXLS" | |
| label="Import Dataset from Excel..." | |
| menuLabel="From _Excel..." | |
| context="import" | |
| windowMode="main"/> | |
| <cmd id="refreshWorkspace" | |
| buttonLabel="" | |
| menuLabel="Refresh" | |
| desc="Refresh Workspace"/> | |
| <cmd id="installPackage" | |
| label="Install Packages..." | |
| menuLabel="Install Pac_kages..." | |
| buttonLabel="Install" | |
| desc="Install R packages" | |
| windowMode="main"/> | |
| <cmd id="updatePackages" | |
| label="Update Packages..." | |
| menuLabel="Check for Package _Updates..." | |
| buttonLabel="Update" | |
| desc="Check for package updates" | |
| windowMode="main"/> | |
| <cmd id="refreshPackages" | |
| label="Refresh Packages Pane" | |
| buttonLabel="" | |
| desc="Refresh Package listing"/> | |
| <cmd id="packratBootstrap" | |
| buttonLabel="Packrat" | |
| menuLabel="_Initialize Packrat..." | |
| desc="Use packrat with this project" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="packratClean" | |
| menuLabel="_Clean Unused Packages..." | |
| desc="Remove unused packages from your packrat library" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="packratHelp" | |
| menuLabel="Using Packrat" | |
| desc="Help on using packrat with R projects" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="packratOptions" | |
| buttonLabel="Options" | |
| menuLabel="Packrat _Options..." | |
| desc="Configure packrat options for this project" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="packratBundle" | |
| buttonLabel="Bundle" | |
| menuLabel="Export Project _Bundle..." | |
| desc="Bundle a Packrat Project" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="packratCheckStatus" | |
| menuLabel="Check Library _Status..." | |
| desc="Check the status of the Packrat library" | |
| rebindable="false" | |
| context="packrat"/> | |
| <cmd id="renvHelp" | |
| menuLabel="Introduction to renv" | |
| desc="Learn how to use renv" | |
| rebindable="false" | |
| context="renv"/> | |
| <cmd id="renvSnapshot" | |
| menuLabel="Snapshot Library..." | |
| desc="Snapshot the state of your project library" | |
| rebindable="false" | |
| context="renv"/> | |
| <cmd id="renvRestore" | |
| menuLabel="Restore Library..." | |
| desc="Restore your project library from renv.lock" | |
| rebindable="false" | |
| context="renv"/> | |
| <cmd id="versionControlOptions" | |
| menuLabel="_Options..." | |
| desc="Configure version control options" | |
| context="vcs" | |
| windowMode="main"/> | |
| <cmd id="versionControlHelp" | |
| menuLabel="_Using Version Control" | |
| desc="Help on using version control with RStudio" | |
| context="help"/> | |
| <cmd id="versionControlShowRsaKey" | |
| label="Show Public Key..." | |
| menuLabel="Show Public Key..." | |
| desc="Show RSA public key" | |
| context="vcs"/> | |
| <cmd id="versionControlProjectSetup" | |
| menuLabel="Project _Setup..." | |
| desc="Setup version control for the current project" | |
| context="vcs" | |
| windowMode="main"/> | |
| <cmd id="showShellDialog" | |
| label="Open Shell" | |
| menuLabel="_Shell..." | |
| desc="Execute shell commands" | |
| windowMode="main"/> | |
| <cmd id="newTerminal" | |
| label="New Terminal" | |
| menuLabel="_New Terminal" | |
| desc="Create a new terminal" | |
| windowMode="main"/> | |
| <cmd id="activateTerminal" | |
| label="Move Focus to Terminal" | |
| menuLabel="_Move Focus to Terminal" | |
| windowMode="main"/> | |
| <cmd id="renameTerminal" | |
| label="Rename Terminal" | |
| menuLabel="_Rename Terminal" | |
| desc="Change terminal session name"/> | |
| <cmd id="closeTerminal" | |
| buttonLabel="" | |
| label="Close Terminal" | |
| menuLabel="Cl_ose Terminal" | |
| desc="Close current terminal session"/> | |
| <cmd id="closeAllTerminals" | |
| buttonLabel="" | |
| label="Close All Terminals" | |
| menuLabel="Close _All Terminals"/> | |
| <cmd id="clearTerminalScrollbackBuffer" | |
| buttonLabel="" | |
| label="Clear Terminal Buffer" | |
| menuLabel="_Clear Terminal Buffer" | |
| desc="Clear terminal"/> | |
| <cmd id="previousTerminal" | |
| label="Previous Terminal" | |
| buttonLabel="" | |
| menuLabel="_Previous Terminal" | |
| desc="Show previous terminal"/> | |
| <cmd id="nextTerminal" | |
| label="Next Terminal" | |
| buttonLabel="" | |
| menuLabel="Ne_xt Terminal" | |
| desc="Show next terminal"/> | |
| <cmd id="showTerminalInfo" | |
| label="Terminal Diagnostics..." | |
| buttonLabel="" | |
| menuLabel="Terminal _Diagnostics..." | |
| desc="Show info on current terminal" | |
| context="diagnostics"/> | |
| <cmd id="interruptTerminal" | |
| buttonLabel="" | |
| label="Send Interrupt" | |
| menuLabel="_Interrupt Current Terminal" | |
| desc="Send Ctrl+C to Current Terminal"/> | |
| <cmd id="sendTerminalToEditor" | |
| label="Copy Terminal to Editor" | |
| buttonLabel="" | |
| menuLabel="Copy Terminal to _Editor" | |
| desc="Copy current terminal's buffer to a new editor buffer"/> | |
| <cmd id="sendToTerminal" | |
| label="Send Selection to Terminal" | |
| buttonLabel="" | |
| menuLabel="Send to _Terminal" | |
| desc="Send the current line or selection to terminal"/> | |
| <cmd id="sendFilenameToTerminal" | |
| menuLabel="Send _Filename to Terminal" | |
| windowMode="main"/> | |
| <cmd id="openNewTerminalAtEditorLocation" | |
| menuLabel="_Open New Terminal at File Location" | |
| windowMode="main"/> | |
| <cmd id="openNewTerminalAtFilePaneLocation" | |
| menuLabel="Open New Terminal Here" | |
| windowMode="main"/> | |
| <cmd id="setTerminalToCurrentDirectory" | |
| menuLabel="_Go to Current Directory" | |
| windowMode="main"/> | |
| <cmd id="browseAddins" | |
| label="Browse Addins" | |
| menuLabel="_Browse Addins..." | |
| desc="Browse addins" | |
| windowMode="main"/> | |
| <cmd id="macPreferences" | |
| menuLabel="_Preferences..."/> | |
| <cmd id="showOptions" | |
| menuLabel="_Global Options..." | |
| windowMode="main"/> | |
| <cmd id="showCodeOptions" | |
| label="Code Options..." | |
| windowMode="main"/> | |
| <cmd id="showConsoleOptions" | |
| label="Console Options..." | |
| windowMode="main"/> | |
| <cmd id="showAppearanceOptions" | |
| label="Appearance Options..." | |
| windowMode="main"/> | |
| <cmd id="paneLayout" | |
| menuLabel="Pane Layo_ut..." | |
| label="Pane Layout Options..." | |
| windowMode="main"/> | |
| <cmd id="showPackagesOptions" | |
| label="Packages Options..." | |
| windowMode="main"/> | |
| <cmd id="showRMarkdownOptions" | |
| label="R Markdown Options..." | |
| windowMode="main"/> | |
| <cmd id="showSweaveOptions" | |
| label="Sweave Options..." | |
| windowMode="main"/> | |
| <cmd id="showSpellingOptions" | |
| label="Spelling Options..." | |
| windowMode="main"/> | |
| <cmd id="showVcsOptions" | |
| label="Git/SVN Version Control Options..." | |
| windowMode="main"/> | |
| <cmd id="showPublishingOptions" | |
| label="Publishing Options..." | |
| windowMode="main"/> | |
| <cmd id="showTerminalOptions" | |
| menuLabel="_Terminal Options..." | |
| windowMode="main"/> | |
| <cmd id="showAccessibilityOptions" | |
| menuLabel="Accessibility _Options..." | |
| windowMode="main"/> | |
| <cmd id="showPythonOptions" | |
| label="Python Options..." | |
| windowMode="main"/> | |
| <cmd id="modifyKeyboardShortcuts" | |
| menuLabel="_Modify Keyboard Shortcuts..." | |
| desc="Modify keyboard shortcuts" | |
| windowMode="main"/> | |
| <cmd id="checkForUpdates" | |
| label="Check for RStudio Updates" | |
| menuLabel="Check for _Updates" | |
| windowMode="main" | |
| visible="false"/> | |
| <cmd id="helpUsingRStudio" | |
| menuLabel="RStudio _Docs" | |
| context="help" | |
| windowMode="main"/> | |
| <cmd id="helpKeyboardShortcuts" | |
| menuLabel="_Keyboard Shortcuts Help" | |
| context="help"/> | |
| <cmd id="helpBack" | |
| label="Previous Help Topic" | |
| buttonLabel="" | |
| context="help" | |
| desc="Previous topic"/> | |
| <cmd id="helpForward" | |
| label="Next Help Topic" | |
| buttonLabel="" | |
| desc="Next topic"/> | |
| <cmd id="helpHome" | |
| label="Show R Help" | |
| menuLabel="R _Help" | |
| buttonLabel="" | |
| desc="Show R Help" | |
| windowMode="main"/> | |
| <cmd id="helpSearch" | |
| menuLabel="Search R Hel_p" | |
| windowMode="main"/> | |
| <cmd id="printHelp" | |
| label="Print Help Topic" | |
| buttonLabel="" | |
| desc="Print topic" | |
| rebindable="false"/> | |
| <cmd id="clearHelpHistory" | |
| label="Clear Help History" | |
| menuLabel="Clear history" | |
| desc="Clear history" | |
| rebindable="false"/> | |
| <cmd id="helpPopout" | |
| label="Show Help in New Window" | |
| buttonLabel="" | |
| desc="Show in new window" | |
| context="help"/> | |
| <cmd id="refreshHelp" | |
| label="Refresh Help Topic" | |
| menuLabel="Refresh" | |
| desc="Refresh topic" | |
| context="help"/> | |
| <cmd id="tutorialPopout" | |
| buttonLabel="" | |
| desc="Show in new window" | |
| context="tutorial"/> | |
| <cmd id="tutorialBack" | |
| buttonLabel="" | |
| desc="Go back" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="tutorialForward" | |
| buttonLabel="" | |
| desc="Go forward" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="tutorialZoom" | |
| buttonLabel="Zoom" | |
| desc="View a larger version in a new window" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="tutorialRefresh" | |
| desc="Refresh tutorial" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="tutorialStop" | |
| buttonLabel="" | |
| desc="Stop tutorial" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="tutorialHome" | |
| buttonLabel="" | |
| desc="Return to home" | |
| rebindable="false" | |
| context="tutorial"/> | |
| <cmd id="viewerPopout" | |
| buttonLabel="" | |
| desc="Show in new window" | |
| context="viewer"/> | |
| <cmd id="viewerBack" | |
| buttonLabel="" | |
| desc="Go back" | |
| rebindable="false" | |
| context="viewer"/> | |
| <cmd id="viewerForward" | |
| buttonLabel="" | |
| desc="Go forward" | |
| rebindable="false" | |
| context="viewer"/> | |
| <cmd id="viewerZoom" | |
| buttonLabel="Zoom" | |
| desc="View a larger version in a new window" | |
| rebindable="false" | |
| context="viewer"/> | |
| <cmd id="viewerRefresh" | |
| desc="Refresh viewer" | |
| rebindable="false" | |
| context="viewer"/> | |
| <cmd id="viewerSaveAllAndRefresh" | |
| desc="Save source files and refresh viewer" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerStop" | |
| buttonLabel="" | |
| desc="Stop application" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerClear" | |
| buttonLabel="" | |
| desc="Remove current viewer item" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerClearAll" | |
| buttonLabel="" | |
| desc="Clear all viewer items" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerSaveAsImage" | |
| menuLabel = "Save as Image..." | |
| desc="Save as an image file" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerSaveAsWebPage" | |
| menuLabel="Save as Web Page..." | |
| desc="Save as a standalone web page" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="viewerCopyToClipboard" | |
| menuLabel="Copy to Clipboard..." | |
| desc="Copy to the system clipboard" | |
| context="viewer" | |
| rebindable="false"/> | |
| <cmd id="raiseException" | |
| menuLabel="Raise E_xception" | |
| rebindable="false"/> | |
| <cmd id="raiseException2" | |
| menuLabel="Raise Exception _JS" | |
| rebindable="false"/> | |
| <cmd id="showWarningBar" | |
| menuLabel="Show warning bar" | |
| rebindable="false"/> | |
| <cmd id="showRequestLog" | |
| menuLabel="_Request Log" | |
| context="diagnostics" | |
| desc="Show internal request log"/> | |
| <cmd id="diagnosticsReport" | |
| menuLabel="_Write Diagnostics Report" | |
| context="diagnostics" | |
| windowMode="main" | |
| visible="false"/> | |
| <cmd id="openDeveloperConsole" | |
| menuLabel="_Open Developer Console" | |
| rebindable="false" | |
| context="diagnostics" | |
| windowMode="main"/> | |
| <cmd id="reloadUi" | |
| menuLabel="Reload _UI" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="logFocusedElement" | |
| menuLabel="Log focused element" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="debugDumpContents" | |
| menuLabel="_Dump Editor Contents..." | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="debugImportDump" | |
| menuLabel="_Import Editor Contents..." | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="refreshSuperDevMode" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="newSession" | |
| label="Open a New R Session" | |
| buttonLabel="" | |
| menuLabel="_New Session" | |
| desc="Open a new R session" | |
| windowMode="main"/> | |
| <cmd id="suspendSession" | |
| label="Suspend R Session" | |
| menuLabel="_Suspend R Session" | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="quitSession" | |
| label="Quit the Current R Session" | |
| menuLabel="_Quit Session..." | |
| buttonLabel="" | |
| desc="Quit the current R session" | |
| windowMode="main"/> | |
| <cmd id="forceQuitSession" | |
| label="Quit the Current R Session Even if Busy" | |
| menuLabel="Force Quit Session..." | |
| buttonLabel="" | |
| desc="Quit the current R session even if busy" | |
| windowMode="main"/> | |
| <cmd id="showSessionServerOptionsDialog" | |
| label="Session Server Settings..." | |
| menuLabel="_Session Server Settings..." | |
| buttonLabel="" | |
| desc="Configure available session servers" | |
| windowMode="main"/> | |
| <cmd id="showAboutDialog" | |
| label="About RStudio..." | |
| menuLabel="A_bout RStudio" | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="showLicenseDialog" | |
| label="Manage License..." | |
| menuLabel="Ma_nage License..." | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="showLogFiles" | |
| menuLabel="_Show Log Files" | |
| visible="false" | |
| windowMode="main" | |
| rebindable="false"/> | |
| <cmd id="updateCredentials" | |
| menuLabel="_Update Credentials" | |
| rebindable="false"/> | |
| <cmd id="rstudioCommunityForum" | |
| menuLabel="RStudio Community _Forum" | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="rstudioSupport" | |
| menuLabel="RStudio _Support" | |
| rebindable="false" | |
| windowMode="main"/> | |
| <cmd id="rstudioLicense" | |
| menuLabel="RStudio _License" | |
| visible="false" | |
| windowMode="main" | |
| rebindable="false"/> | |
| <cmd id="buildAll" | |
| label="Install and Restart" | |
| buttonLabel="Install and Restart" | |
| menuLabel="_Install and Restart" | |
| desc="Install the package and restart R" | |
| windowMode="main" | |
| context="packageDevelopment"/> | |
| <cmd id="rebuildAll" | |
| label="Clean and Rebuild" | |
| menuLabel="Clean and _Rebuild" | |
| desc="Clean previous output and rebuild all" | |
| windowMode="main" | |
| context="packageDevelopment"/> | |
| <cmd id="cleanAll" | |
| label="Clean All" | |
| menuLabel="_Clean All" | |
| buttonLabel="Clean" | |
| context="packageDevelopment" | |
| desc="Clean all"/> | |
| <cmd id="buildSourcePackage" | |
| menuLabel="Build _Source Package" | |
| context="packageDevelopment" | |
| desc="Build a source package"/> | |
| <cmd id="buildBinaryPackage" | |
| menuLabel="Build Binar_y Package" | |
| context="packageDevelopment" | |
| desc="Build a binary package"/> | |
| <cmd id="devtoolsLoadAll" | |
| label="Execute devtools::load_all()" | |
| menuLabel="_Load All" | |
| desc="Execute devtools::load_all" | |
| windowMode="background" | |
| context="packageDevelopment"/> | |
| <cmd id="roxygenizePackage" | |
| label="Build Package Documentation" | |
| menuLabel="_Document" | |
| desc="Build package documentation" | |
| windowMode="background" | |
| context="packageDevelopment"/> | |
| <cmd id="checkPackage" | |
| buttonLabel="Check" | |
| menuLabel="_Check Package" | |
| desc="R CMD check" | |
| windowMode="background" | |
| context="packageDevelopment"/> | |
| <cmd id="testPackage" | |
| menuLabel="_Test Package" | |
| desc="Run tests for package" | |
| windowMode="background" | |
| context="packageDevelopment"/> | |
| <cmd id="testTestthatFile" | |
| label="Run testthat Tests" | |
| menuLabel="Run tests for file" | |
| buttonLabel="Run Tests" | |
| desc="Run tests using the testthat package"/> | |
| <cmd id="testShinytestFile" | |
| label="Run shinytest Test" | |
| menuLabel="Run test for file" | |
| buttonLabel="Run Test" | |
| desc="Run test using the shinytest package"/> | |
| <cmd id="stopBuild" | |
| menuLabel="Sto_p Build" | |
| desc="Stop the current build" | |
| context="packageDevelopment" | |
| windowMode="main"/> | |
| <cmd id="buildToolsProjectSetup" | |
| label="Configure Build Tools..." | |
| menuLabel="Configure Build _Tools..." | |
| desc="Configure build tools" | |
| context="packageDevelopment" | |
| windowMode="main"/> | |
| <cmd id="refreshEnvironment" | |
| menuLabel="_Refresh Environment" | |
| desc="Refresh the list of objects in the environment" | |
| context="r"/> | |
| <cmd id="undoDummy" | |
| menuLabel="_Undo" | |
| rebindable="false"/> | |
| <cmd id="redoDummy" | |
| menuLabel="Re_do" | |
| rebindable="false"/> | |
| <cmd id="cutDummy" | |
| menuLabel="Cu_t" | |
| rebindable="false"/> | |
| <cmd id="copyDummy" | |
| menuLabel="_Copy" | |
| rebindable="false"/> | |
| <cmd id="pasteDummy" | |
| menuLabel="_Paste" | |
| rebindable="false"/> | |
| <cmd id="pasteWithIndentDummy" | |
| menuLabel="Pa_ste with Indent" | |
| rebindable="false"/> | |
| <cmd id="yankBeforeCursor" | |
| label="Yank Before Cursor" | |
| context="editor"/> | |
| <cmd id="yankAfterCursor" | |
| label="Yank After Cursor" | |
| context="editor"/> | |
| <cmd id="pasteLastYank" | |
| label="Paste Last Yank" | |
| context="editor"/> | |
| <cmd id="insertAssignmentOperator" | |
| label="Insert Assignment Operator" | |
| context="editor"/> | |
| <cmd id="insertPipeOperator" | |
| label="Insert Pipe Operator" | |
| context="editor"/> | |
| <cmd id="openNextFileOnFilesystem" | |
| label="Open Next File on Filesystem"/> | |
| <cmd id="openPreviousFileOnFilesystem" | |
| label="Open Previous File on Filesystem"/> | |
| <cmd id="toggleSoftWrapMode" | |
| label="Toggle Soft Wrap Mode" | |
| menuLabel="Soft _Wrap Long Lines" | |
| checkable="true" | |
| context="editor"/> | |
| <cmd id="toggleRainbowParens" | |
| label="Toggle Rainbow Parentheses Mode" | |
| menuLabel="Rain_bow Parentheses" | |
| checkable="true" | |
| context="editor"/> | |
| <cmd id="maximizeConsole" | |
| menuLabel="Maximize Console"/> | |
| <cmd id="debugBreakpoint" | |
| label="Toggle Breakpoint on Current Line" | |
| menuLabel="Toggle _Breakpoint" | |
| desc="Set or remove a breakpoint on the current line of code"/> | |
| <cmd id="debugClearBreakpoints" | |
| label="Clear All Breakpoints..." | |
| menuLabel="Clear _All Breakpoints..." | |
| desc="Remove all the breakpoints in the current project"/> | |
| <cmd id="debugContinue" | |
| label="Continue Execution" | |
| menuLabel="_Continue" | |
| buttonLabel="Continue" | |
| desc="Continue execution until the next breakpoint is encountered"/> | |
| <cmd id="debugStop" | |
| label="Stop Debugging" | |
| menuLabel="_Stop Debugging" | |
| buttonLabel="Stop" | |
| desc="Exit debug mode"/> | |
| <cmd id="debugStep" | |
| label="Execute Next Line" | |
| menuLabel="E_xecute Next Line" | |
| buttonLabel="Next" | |
| desc="Execute the next line of code"/> | |
| <cmd id="debugStepInto" | |
| label="Step Into Function" | |
| menuLabel="Step _Into Function" | |
| buttonLabel="" | |
| desc="Step into the current function call"/> | |
| <cmd id="debugFinish" | |
| label="Finish Function/Loop" | |
| menuLabel="_Finish Function/Loop" | |
| buttonLabel="" | |
| desc="Execute the remainder of the current function or loop"/> | |
| <cmd id="debugHelp" | |
| label="Show Guide on Debugging with RStudio" | |
| menuLabel="Debugging _Help" | |
| desc="Guide to debugging features" | |
| context="help" | |
| windowMode="main"/> | |
| <cmd id="errorsMessage" | |
| menuLabel="_Message Only" | |
| desc="Print the error message when an unhandled error occurs" | |
| radio="true" | |
| rebindable="false"/> | |
| <cmd id="errorsTraceback" | |
| menuLabel="_Error Inspector" | |
| desc="Show the error inspector when an unhandled error occurs" | |
| radio="true" | |
| rebindable="false"/> | |
| <cmd id="errorsBreak" | |
| menuLabel="_Break in Code" | |
| desc="Break when any unhandled error occurs" | |
| radio="true" | |
| rebindable="false"/> | |
| <cmd id="startProfiler" | |
| menuLabel="_Start Profiling" | |
| desc="Start profiling R code" | |
| rebindable="false"/> | |
| <cmd id="stopProfiler" | |
| menuLabel="Stop Profilin_g" | |
| buttonLabel="Stop Profiling" | |
| desc="Stop profiling R code" | |
| rebindable="false"/> | |
| <cmd id="profileCode" | |
| label="Profile Current Line or Selection" | |
| buttonLabel="" | |
| menuLabel="_Profile Selected Line(s)" | |
| desc="Profile the current line or selection" | |
| context="r"/> | |
| <cmd id="gotoProfileSource" | |
| label="Go To Profile Sources" | |
| buttonLabel="" | |
| desc="Open sources associated with the selection"/> | |
| <cmd id="profileCodeWithoutFocus" | |
| label="Profile Current Line or Selection Without Focus" | |
| rebindable="false"/> | |
| <cmd id="openProfile" | |
| label="Open Profile..." | |
| menuLabel="_Open Profile..." | |
| desc="Opens a profile from a file"/> | |
| <cmd id="saveProfileAs" | |
| label="Save Profile As..." | |
| menuLabel="_Save Profile As..." | |
| buttonLabel="" | |
| desc="Saves current profile into a file"/> | |
| <cmd id="openProfileInBrowser" | |
| label="Open Profile in Browser..." | |
| menuLabel="_Open Profile in Browser" | |
| buttonLabel="" | |
| desc="Opens current profile in a web browser"/> | |
| <cmd id="profileHelp" | |
| label="Show Guide on Profiling with RStudio" | |
| menuLabel="Profiling _Help" | |
| desc="Guide to profiling features" | |
| context="help" | |
| windowMode="main"/> | |
| <cmd id="reloadShinyApp" | |
| label="Reload Shiny Application" | |
| menuLabel="Reload" | |
| buttonLabel="" | |
| desc="Reload the Shiny application"/> | |
| <cmd id="shinyRunInPane" | |
| label="Run Shiny Application in New Pane" | |
| menuLabel="Run in Viewer Pane" | |
| desc="Run the Shiny application in an RStudio pane" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="shinyRunInViewer" | |
| label="Run Shiny Application in RStudio Viewer" | |
| menuLabel="Run in Window" | |
| desc="Run the Shiny application in an RStudio viewer window" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="shinyRunInBrowser" | |
| label="Run Shiny Application in Web Browser" | |
| menuLabel="Run External" | |
| desc="Run the Shiny application in the system's default Web browser" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="shinyRecordTest" | |
| label="Record a test for Shiny" | |
| menuLabel="Record Test" | |
| buttonLabel="Record Test" | |
| desc="Record test for Shiny application"/> | |
| <cmd id="shinyRunAllTests" | |
| label="Run tests for Shiny application" | |
| menuLabel="Run Tests" | |
| buttonLabel="Run Tests" | |
| desc="Run tests for Shiny application"/> | |
| <cmd id="shinyCompareTest" | |
| label="Compare test results for Shiny application" | |
| menuLabel="Compare Results" | |
| buttonLabel="Compare Results" | |
| desc="Compare test results for Shiny application"/> | |
| <cmd id="reloadPlumberAPI" | |
| label="Reload Plumber API" | |
| menuLabel="Reload" | |
| buttonLabel="" | |
| desc="Reload the Plumber API"/> | |
| <cmd id="plumberRunInPane" | |
| label="Run Plumber API in New Pane" | |
| menuLabel="Run in Viewer Pane" | |
| desc="Run the Plumber API in an RStudio pane" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="plumberRunInViewer" | |
| label="Run Plumber API in RStudio Viewer" | |
| menuLabel="Run in Window" | |
| desc="Run the Plumber API in an RStudio viewer window" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="plumberRunInBrowser" | |
| label="Run Plumber API in Web Browser" | |
| menuLabel="Run External" | |
| desc="Run the Plumber API in the system's default Web browser" | |
| checkable="true" | |
| windowMode="background"/> | |
| <cmd id="rsconnectDeploy" | |
| menuLabel="P_ublish..." | |
| desc="Publish the application or document" | |
| visible="false" | |
| windowMode="main" | |
| rebindable="false"/> | |
| <cmd id="rsconnectConfigure" | |
| menuLabel="_Configure Application..." | |
| desc="Configure the application" | |
| visible="false" | |
| windowMode="main" | |
| rebindable="false"/> | |
| <cmd id="rsconnectManageAccounts" | |
| menuLabel="_Manage Accounts..." | |
| desc="Connect or disconnect accounts" | |
| visible="false" | |
| windowMode="main" | |
| rebindable="false"/> | |
| <cmd id="showGpuDiagnostics" | |
| menuLabel="Show _GPU Diagnostics" | |
| rebindable="false" | |
| context="diagnostics"/> | |
| <cmd id="toggleEditorTokenInfo" | |
| menuLabel="_Toggle Editor Token Information" | |
| rebindable="false" | |
| context="diagnostics"/> | |
| <cmd id="showDomElements" | |
| menuLabel="_Show DOM Elements" | |
| rebindable="false" | |
| context="diagnostics"/> | |
| <cmd id="newConnection" | |
| menuLabel="New Connection..." | |
| buttonLabel="New Connection" | |
| desc="Create a new connection" | |
| windowMode="main"/> | |
| <cmd id="removeConnection" | |
| menuLabel="Remove Connection..." | |
| buttonLabel="" | |
| desc="Remove connection from the connection history" | |
| windowMode="main"/> | |
| <cmd id="disconnectConnection" | |
| menuLabel="Disconnect" | |
| desc="Disconnect from a connection" | |
| windowMode="main"/> | |
| <cmd id="refreshConnection" | |
| label="Refresh Connection Data" | |
| menuLabel="Refresh" | |
| desc="Refresh data" | |
| windowMode="main"/> | |
| <cmd id="sparkLog" | |
| label="View Spark Log" | |
| menuLabel="Spark Log" | |
| buttonLabel="Log" | |
| desc="View the log for the Spark connection" | |
| windowMode="main"/> | |
| <cmd id="sparkUI" | |
| menuLabel="SparkUI" | |
| buttonLabel = "SparkUI" | |
| desc="View the browser UI for the Spark connection" | |
| windowMode="main"/> | |
| <cmd id="sparkHelp" | |
| menuLabel="Using Spark with RStudio" | |
| buttonLabel="" | |
| desc="Help on using Spark with RStudio" | |
| windowMode="main"/> | |
| <cmd id="startJob" | |
| menuLabel="_Start Local Job..." | |
| buttonLabel="Start Local Job" | |
| desc="Run a background local job" | |
| windowMode="main"/> | |
| <cmd id="sourceAsJob" | |
| menuLabel="Source as Local Job..." | |
| desc="Run the current R script as a local job" | |
| windowMode="any"/> | |
| <cmd id="clearJobs" | |
| menuLabel="_Clear Local Jobs" | |
| desc="Clean up all completed local jobs" | |
| windowMode="main"/> | |
| <cmd id="runSelectionAsJob" | |
| menuLabel="Ru_n Selection as Local Job" | |
| desc="Run the selected code as a local job" | |
| windowMode="any"/> | |
| <cmd id="startLauncherJob" | |
| menuLabel="Start Launcher _Job..." | |
| buttonLabel="Start Launcher Job" | |
| desc="Run a background job on a cluster" | |
| windowMode="main"/> | |
| <cmd id="sourceAsLauncherJob" | |
| menuLabel="Source as Launcher Job..." | |
| desc="Run the current R script on a cluster" | |
| windowMode="any"/> | |
| <cmd id="runSelectionAsLauncherJob" | |
| menuLabel="Run Selection as _Launcher Job" | |
| desc="Run the selected code as a launcher job" | |
| windowMode="any"/> | |
| <cmd id="sortLauncherJobsRecorded" | |
| menuLabel="Sort by Submission Time" | |
| desc="Sort jobs by time submitted" | |
| rebindable="false" | |
| checkable="true" | |
| windowMode="any"/> | |
| <cmd id="sortLauncherJobsState" | |
| menuLabel="Sort by Job State" | |
| desc="Sort jobs by current state" | |
| rebindable="false" | |
| checkable="true" | |
| windowMode="any"/> | |
| <cmd id="showFileMenu" | |
| menuLabel="Show File Menu" | |
| windowMode="main"/> | |
| <cmd id="showEditMenu" | |
| menuLabel="Show Edit Menu" | |
| windowMode="main"/> | |
| <cmd id="showCodeMenu" | |
| menuLabel="Show Code Menu" | |
| windowMode="main"/> | |
| <cmd id="showViewMenu" | |
| menuLabel="Show View Menu" | |
| windowMode="main"/> | |
| <cmd id="showPlotsMenu" | |
| menuLabel="Show Plots Menu" | |
| windowMode="main"/> | |
| <cmd id="showSessionMenu" | |
| menuLabel="Show Session Menu" | |
| windowMode="main"/> | |
| <cmd id="showBuildMenu" | |
| menuLabel="Show Build Menu" | |
| windowMode="main"/> | |
| <cmd id="showDebugMenu" | |
| menuLabel="Show Debug Menu" | |
| windowMode="main"/> | |
| <cmd id="showProfileMenu" | |
| menuLabel="Show Profile Menu" | |
| windowMode="main"/> | |
| <cmd id="showToolsMenu" | |
| menuLabel="Show Tools Menu" | |
| windowMode="main"/> | |
| <cmd id="showHelpMenu" | |
| menuLabel="Show Help Menu" | |
| windowMode="main"/> | |
| <cmd id="editUserPrefs" | |
| menuLabel="_Edit User Prefs File" | |
| windowMode="main" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="clearUserPrefs" | |
| menuLabel="_Clear User Prefs" | |
| windowMode="main" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="viewAllPrefs" | |
| menuLabel="_View All Prefs" | |
| windowMode="main" | |
| context="diagnostics" | |
| rebindable="false"/> | |
| <cmd id="toggleScreenReaderSupport" | |
| menuLabel="_Screen Reader Support" | |
| checkable="true" | |
| windowMode="main"/> | |
| <cmd id="showAccessibilityHelp" | |
| menuLabel="Accessibility _Help..." | |
| windowMode="main"/> | |
| <cmd id="toggleTabKeyMovesFocus" | |
| menuLabel="_Tab Key Always Moves Focus" | |
| checkable="true" | |
| windowMode="main"/> | |
| <cmd id="focusMainToolbar" | |
| menuLabel="Focus _Main Toolbar" | |
| windowMode="main"/> | |
| <cmd id="focusConsoleOutputEnd" | |
| menuLabel="_Focus Console Output" | |
| windowMode="main"/> | |
| <cmd id="focusNextPane" | |
| menuLabel="_Focus Next Pane" | |
| windowMode="main"/> | |
| <cmd id="focusPreviousPane" | |
| menuLabel="_Focus Previous Pane" | |
| windowMode="main"/> | |
| <cmd id="signOut" | |
| label="Sign Out" | |
| buttonLabel="" | |
| menuLabel="Sign Ou_t" | |
| desc="Sign out from RStudio" | |
| windowMode="main"/> | |
| <cmd id="loadServerHome" | |
| buttonLabel="" | |
| menuLabel="RStudio Server _Home" | |
| windowMode="main"/> | |
| <cmd id="speakEditorLocation" | |
| menuLabel="Speak Text _Editor Location" | |
| windowMode="main"/> | |
| <cmd id="focusLeftSeparator" | |
| menuLabel="A_djust Left Splitter" | |
| windowMode="main"/> | |
| <cmd id="focusRightSeparator" | |
| menuLabel="Ad_just Right Splitter" | |
| windowMode="main"/> | |
| <cmd id="focusCenterSeparator" | |
| menuLabel="Adjust Center S_plitter" | |
| windowMode="main"/> | |
| <cmd id="focusSourceColumnSeparator" | |
| menuLabel="Adjust Source Column Spli_tter" | |
| windowMode="main"/> | |
| <cmd id="showShortcutCommand" | |
| menuLabel="Show _Keyboard Shortcut Commands" | |
| rebindable="false"/> | |
| <cmd id="showCommandPalette" | |
| label="Show Command Palette" | |
| menuLabel="Show _Command Palette" /> | |
| <cmd id="clearCommandPaletteMru" | |
| menuLabel="Clear Recently Executed Command List" /> | |
| <cmd id="freeUnusedMemory" | |
| menuLabel="_Free Unused R Memory" /> | |
| <cmd id="showMemoryUsageReport" | |
| menuLabel="Memory Usage _Report..." /> | |
| <cmd id="toggleShowMemoryUsage" | |
| label="Toggle Memory Usage Display in Environment Pane" | |
| menuLabel="_Show Current Memory Usage" | |
| checkable="true" /> | |
| </commands> |