From 77fde44ae4a12526dac921ced41fc90a200e7abb Mon Sep 17 00:00:00 2001 From: Christian Lenz Date: Thu, 8 Sep 2022 00:15:59 +0200 Subject: [PATCH 1/2] added section for keyboard shortcuts --- .../BestPractices/keyboard-shortcuts/index.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 content/docs/BestPractices/keyboard-shortcuts/index.md diff --git a/content/docs/BestPractices/keyboard-shortcuts/index.md b/content/docs/BestPractices/keyboard-shortcuts/index.md new file mode 100644 index 00000000..e31bd87f --- /dev/null +++ b/content/docs/BestPractices/keyboard-shortcuts/index.md @@ -0,0 +1,30 @@ +--- +title: "Keyboard Shortcuts" +tags: ["AL","Productivity"] +categories: ["Best Practice"] +--- + +_Created by Christian Lenz, Described by Christian Lenz_ + +## Description + +To increase developer productivity while coding, use keyboard shortcuts that are available in the specific context to execute actions faster. + +This is a selection of the community's favorites (more to come). + +**Windows** + +| Shortcut | Context | Description | +|---|---|---| +| CTRL + Backspace | Editor | Delete word | + +**VS Code** + +| Shortcut | Context | Description | +|---|---|---| +| ALT + | Editor | Switch Tab | +| ALT + | Go To Definition | Go Back / Forward | +| ALT + | Editor | Move Line Up/Down | +| ALT + SHIFT + | Editor | Copy Line Below/Above | +| CTRL + X | Editor | Delete Line | + From 49fd819565d5b66b8f6a52bf71b81567b0acb028 Mon Sep 17 00:00:00 2001 From: Christian Lenz Date: Thu, 8 Sep 2022 00:35:50 +0200 Subject: [PATCH 2/2] changed design of the columns --- .../BestPractices/keyboard-shortcuts/index.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/content/docs/BestPractices/keyboard-shortcuts/index.md b/content/docs/BestPractices/keyboard-shortcuts/index.md index e31bd87f..9a9a081b 100644 --- a/content/docs/BestPractices/keyboard-shortcuts/index.md +++ b/content/docs/BestPractices/keyboard-shortcuts/index.md @@ -14,17 +14,18 @@ This is a selection of the community's favorites (more to come). **Windows** -| Shortcut | Context | Description | +| What | Where | How | |---|---|---| -| CTRL + Backspace | Editor | Delete word | +| Delete word | Editor | CTRL + Backspace | + **VS Code** -| Shortcut | Context | Description | +| What | Where | How | |---|---|---| -| ALT + | Editor | Switch Tab | -| ALT + | Go To Definition | Go Back / Forward | -| ALT + | Editor | Move Line Up/Down | -| ALT + SHIFT + | Editor | Copy Line Below/Above | -| CTRL + X | Editor | Delete Line | +| Switch Tab | Editor | ALT + | +| Move Line Up/Down | Editor | ALT + | +| Copy Line Below/Above | Editor | ALT + SHIFT + | +| Delete Line | Editor | CTRL + X (without selection) | +| Go Back / Forward | Go To Definition | ALT + |