From a1c53ccbdf24fca87de4a4cc73b1a04b0534f822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Vercaemst?= Date: Fri, 6 May 2022 09:13:50 +0200 Subject: [PATCH] Added Tips section with link to VSCode extension --- .../BestPractices/variables-declarations-order/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/content/docs/BestPractices/variables-declarations-order/index.md b/content/docs/BestPractices/variables-declarations-order/index.md index 262b768f..8f7e2131 100644 --- a/content/docs/BestPractices/variables-declarations-order/index.md +++ b/content/docs/BestPractices/variables-declarations-order/index.md @@ -39,3 +39,10 @@ Variables declarations should be ordered by type. In general, object and complex Vendor: Record Vendor; StartingDateFilter: Text; ``` + +## Tips + +The [AZ AL Dev Tools/AL Code Outline](https://marketplace.visualstudio.com/items?itemName=andrzejzwierzchowski.al-code-outline) extension adds two new commands to Visual Studio Code to sorts variables. + +- `Sort Variables in the Active Editor` : sorts variables in the current editor +- `Sort Variables in the Active Project` : sorts variables in the current project