experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(shortcuts): remove unused shortcuts and normalize to CommandOrControl

Remove keyboard shortcuts from: tags, timers, tag-actions, feeds, scripts.
Normalize remaining shortcuts from Option+X to CommandOrControl+X.
Use Cmd+Shift for windows switcher and lists to avoid OS conflicts.

+3 -53
-4
features/editor/manifest.json
··· 16 16 ], 17 17 "shortcuts": [ 18 18 { 19 - "keys": "Option+e", 20 - "command": "editor" 21 - }, 22 - { 23 19 "keys": "CommandOrControl+E", 24 20 "command": "editor" 25 21 }
-6
features/feeds/manifest.json
··· 21 21 "description": "Refresh all feeds", 22 22 "action": { "type": "execute" } 23 23 } 24 - ], 25 - "shortcuts": [ 26 - { 27 - "keys": "Option+Shift+F", 28 - "command": "open feeds" 29 - } 30 24 ] 31 25 }
-4
features/groups/manifest.json
··· 50 50 ], 51 51 "shortcuts": [ 52 52 { 53 - "keys": "Option+g", 54 - "command": "groups" 55 - }, 56 - { 57 53 "keys": "CommandOrControl+G", 58 54 "command": "groups" 59 55 }
-4
features/hud/manifest.json
··· 15 15 ], 16 16 "shortcuts": [ 17 17 { 18 - "keys": "Option+H", 19 - "command": "hud" 20 - }, 21 - { 22 18 "keys": "CommandOrControl+H", 23 19 "command": "hud" 24 20 }
+1 -1
features/lists/manifest.json
··· 15 15 ], 16 16 "shortcuts": [ 17 17 { 18 - "keys": "Option+f", 18 + "keys": "CommandOrControl+Shift+F", 19 19 "command": "lists" 20 20 } 21 21 ]
+1 -1
features/pagestream/manifest.json
··· 15 15 ], 16 16 "shortcuts": [ 17 17 { 18 - "keys": "Option+p", 18 + "keys": "CommandOrControl+P", 19 19 "command": "pagestream" 20 20 } 21 21 ]
-6
features/scripts/manifest.json
··· 17 17 "options": { "key": "scripts-manager", "width": 1200, "height": 800, "title": "Scripts Manager" } 18 18 } 19 19 } 20 - ], 21 - "shortcuts": [ 22 - { 23 - "keys": "Command+Shift+S", 24 - "command": "open scripts" 25 - } 26 20 ] 27 21 }
-6
features/tag-actions/manifest.json
··· 23 23 } 24 24 } 25 25 } 26 - ], 27 - "shortcuts": [ 28 - { 29 - "keys": "Option+Shift+T", 30 - "command": "tag actions" 31 - } 32 26 ] 33 27 }
-10
features/tags/manifest.json
··· 36 36 "options": { "role": "workspace", "key": "tags-home", "width": 900, "height": 700, "title": "Tags" } 37 37 } 38 38 } 39 - ], 40 - "shortcuts": [ 41 - { 42 - "keys": "Option+t", 43 - "command": "open tags" 44 - }, 45 - { 46 - "keys": "CommandOrControl+T", 47 - "command": "open tags" 48 - } 49 39 ] 50 40 }
-10
features/timers/manifest.json
··· 32 32 "description": "Start a repeating interval timer", 33 33 "action": { "type": "execute" } 34 34 } 35 - ], 36 - "shortcuts": [ 37 - { 38 - "keys": "Option+t", 39 - "command": "timers" 40 - }, 41 - { 42 - "keys": "CommandOrControl+T", 43 - "command": "timers" 44 - } 45 35 ] 46 36 }
+1 -1
features/windows/manifest.json
··· 35 35 ], 36 36 "shortcuts": [ 37 37 { 38 - "keys": "Option+w", 38 + "keys": "CommandOrControl+Shift+W", 39 39 "command": "windows" 40 40 } 41 41 ]