Skip to content

Commit

Permalink
adjust keys used on Windows platforms
Browse files Browse the repository at this point in the history
- update release notes
  • Loading branch information
ironsheep committed Apr 14, 2024
1 parent 44efa3a commit 560b63e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
4 changes: 4 additions & 0 deletions spin2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Update P2 Only
- BUGFIX: Semantic: repair handling of {Spin2_v??} built-in method name support
- BUGFIX: File access issues on Windows (11?) repaired
- Cleaned up the code-fold detection... now handling ORG* forms better
- Adjusted report key-chords for windows:
- Ctrl+Win+r - Generate Object Hierarchy Report
- Ctrl+Win+d - Generate OBject Public Interface Report
- Ctrl+Win+c - (When cursor on PUB or PRI line) Insert Doc comment below the PUB or PRI line


## [2.2.15] 2024-04-09
Expand Down
12 changes: 8 additions & 4 deletions spin2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,17 +493,20 @@
],
"keybindings": [
{
"key": "Ctrl+Alt+r",
"key": "Ctrl+Win+r",
"mac": "Ctrl+Alt+r",
"command": "spinExtension.generate.hierarchy.file",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
{
"key": "Ctrl+Alt+d",
"key": "Ctrl+Win+d",
"mac": "Ctrl+Alt+d",
"command": "spinExtension.generate.documentation.file",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
{
"key": "Ctrl+Alt+c",
"key": "Ctrl+Win+c",
"mac": "Ctrl+Alt+c",
"command": "spinExtension.generate.doc.comment",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
Expand All @@ -518,7 +521,8 @@
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2) && runtime.spinExtension.elasticTabstops.enable == true"
},
{
"key": "Ctrl+Alt+tab",
"key": "Ctrl+Win+tab",
"mac": "Ctrl+Alt+tab",
"command": "spinExtension.elasticTabstops.generate.tabStops.comment",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2) && runtime.spinExtension.elasticTabstops.enable == true"
},
Expand Down
12 changes: 8 additions & 4 deletions spin2/scripts/LIVE-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,17 +493,20 @@
],
"keybindings": [
{
"key": "Ctrl+Alt+r",
"key": "Ctrl+Win+r",
"mac": "Ctrl+Alt+r",
"command": "spinExtension.generate.hierarchy.file",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
{
"key": "Ctrl+Alt+d",
"key": "Ctrl+Win+d",
"mac": "Ctrl+Alt+d",
"command": "spinExtension.generate.documentation.file",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
{
"key": "Ctrl+Alt+c",
"key": "Ctrl+Win+c",
"mac": "Ctrl+Alt+c",
"command": "spinExtension.generate.doc.comment",
"when": "editorTextFocus && !editorReadonly && !suggestWidgetVisible && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2)"
},
Expand All @@ -518,7 +521,8 @@
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2) && runtime.spinExtension.elasticTabstops.enable == true"
},
{
"key": "Ctrl+Alt+tab",
"key": "Ctrl+Win+tab",
"mac": "Ctrl+Alt+tab",
"command": "spinExtension.elasticTabstops.generate.tabStops.comment",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus && (editorLangId == spin || editorLangId == spin2) && runtime.spinExtension.elasticTabstops.enable == true"
},
Expand Down

0 comments on commit 560b63e

Please sign in to comment.