Skip to content

Commit 9b79218

Browse files
committed
chore: change recent files shortcut in desktop apps to unassigned ctrl-r same as vscode
1 parent a49b7f8 commit 9b79218

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/extensionsIntegrated/NavigationAndHistory/keyboard.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"recent-files.show": [
3-
"Ctrl-Alt-Shift-O"
4-
],
52
"recent-files.next": [
63
{
74
"key": "Ctrl-Tab"

src/extensionsIntegrated/NavigationAndHistory/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,8 @@ define(function (require, exports, module) {
715715

716716
if (!CommandManager.get(SHOW_RECENT_FILES)) {
717717
CommandManager.register(Strings.CMD_RECENT_FILES_OPEN, SHOW_RECENT_FILES, _showRecentFileList);
718-
KeyBindingManager.addBinding(SHOW_RECENT_FILES, KeyboardPrefs[SHOW_RECENT_FILES]);
718+
KeyBindingManager.addBinding(SHOW_RECENT_FILES,
719+
Phoenix.isNativeApp ? "Ctrl-R" : "Ctrl-Alt-Shift-O");
719720
}
720721

721722
// Keyboard only - Navigate to the next doc in MROF list

0 commit comments

Comments
 (0)