Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
editors:vscode:v1 [2024-03-11 16:59] – removed - external edit (Unknown date) 127.0.0.1 | editors:vscode:v1 [2024-03-11 16:59] (current) – ↷ Page moved and renamed from editors:vs_code_v1 to editors:vscode:v1 geek | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Visual Studio Code (v1 Guide) ====== | ||
+ | Created on 2021/11/03 with VSCode version **1.53**.\\ | ||
+ | Last revision on 2022/06/30 with VSCode version **1.68.2**. | ||
+ | |||
+ | I'm not a native English speaker, so please report inconsistencies to [[user: | ||
+ | |||
+ | ===== TL;DR: 5-Minute cookbook recipe ===== | ||
+ | |||
+ | - Download[([[https:// | ||
+ | - Press Ctrl+p and type/paste '' | ||
+ | - // | ||
+ | - Press Ctrl+n to create a new document and ++type/ | ||
+ | #Warn All, OutputDebug | ||
+ | hello := "Hello " | ||
+ | world := " | ||
+ | OutputDebug % hello world | ||
+ | OutputDebug % test123test | ||
+ | </ | ||
+ | - Save the document with '' | ||
+ | - Press F9 to debug and see the: ++Debug Console|{{https:// | ||
+ | |||
+ | **Happy debugging!** *(as if...)* | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ===== Choosing a version ===== | ||
+ | |||
+ | Depending on your OS and type of processor, you are better off with the corresponding architecture; | ||
+ | |||
+ | Upon clicking the Windows button (instead of the specific build), the website will make an educated guess and deliver what it considers best. | ||
+ | |||
+ | A more specific installation can be chosen between a *System* and *User* type of installation; | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ===== Installing VSCode ===== | ||
+ | |||
+ | This is your basic run-of-the-mill installer with a License Agreement and a few screens, in the end you're presented with the option to launch the installed application (please do). The process is shown below: | ||
+ | |||
+ | ++License Agreement|\\ {{https:// | ||
+ | |||
+ | ++Destination Location|\\ {{https:// | ||
+ | |||
+ | ++Start Menu Folder|\\ {{https:// | ||
+ | |||
+ | ++Additional Tasks|\\ {{https:// | ||
+ | |||
+ | ++Ready to Install|\\ {{https:// | ||
+ | |||
+ | ++Completed|\\ {{https:// | ||
+ | |||
+ | ==== Portable version ==== | ||
+ | |||
+ | //The '' | ||
+ | |||
+ | ---- | ||
+ | |||
+ | If you want to use VSCode with the same settings on more than one computer but also don't want to log in to an account or don't have administrator access (or simply feel more in control with a stand-alone installation) download either the [[https:// | ||
+ | |||
+ | Once uncompressed, | ||
+ | |||
+ | The possible downside of this method of " | ||
+ | |||
+ | ++++ AutoUpdate.ahk | | ||
+ | <code AutoHotkey AutoUpdate.ahk> | ||
+ | ; | ||
+ | ; Configuration ↓ | ||
+ | ; | ||
+ | |||
+ | #NoTrayIcon ; Don't show an icon | ||
+ | |||
+ | x64 := true ; Use 64 bit | ||
+ | |||
+ | ; | ||
+ | ; Configuration ↑ | ||
+ | ; | ||
+ | |||
+ | ; No sleep | ||
+ | SetBatchLines -1 | ||
+ | |||
+ | ; Check if running | ||
+ | if (WinExist(" | ||
+ | MsgBox 0x40024, Continue?, VSCode is running'', | ||
+ | IfMsgBox No | ||
+ | ExitApp 1 | ||
+ | } | ||
+ | |||
+ | ; Get latest version information | ||
+ | x64 := (x64 && A_Is64bitOS) | ||
+ | url := " | ||
+ | whr := ComObjCreate(" | ||
+ | whr.Open(" | ||
+ | headers := whr.GetAllResponseHeaders() | ||
+ | Sort headers | ||
+ | |||
+ | ; Extract relevant information | ||
+ | regex := " | ||
+ | RegexMatch(headers, | ||
+ | if (!fileName || !fileSize) { | ||
+ | MsgBox 0x40010, Error, Couldn' | ||
+ | ExitApp 1 | ||
+ | } | ||
+ | |||
+ | ; Check if already updated | ||
+ | FileCreateDir % A_ScriptDir " | ||
+ | fileName := A_ScriptDir " | ||
+ | FileGetSize currSize, % filename | ||
+ | if (FileExist(fileName) && !currSize) { | ||
+ | MsgBox 0x40040, Updated, Already up-to-date. | ||
+ | ExitApp | ||
+ | } | ||
+ | |||
+ | ; Remove last downloaded version | ||
+ | FileDelete % A_ScriptDir " | ||
+ | |||
+ | ; Filesize | ||
+ | mb := Round(fileSize / 1024 / 1024, 2) | ||
+ | |||
+ | ; Progress Window | ||
+ | Gui Download: | ||
+ | Gui Font, q5 s11, Consolas | ||
+ | Gui Add, Text,, % " | ||
+ | Gui Show,, % "> Downloading " mb " MiB" | ||
+ | Hotkey IfWinActive, | ||
+ | Hotkey !F4, WinExist | ||
+ | |||
+ | ; Download | ||
+ | SetTimer Percentage, 50 | ||
+ | UrlDownloadToFile % url, % fileName | ||
+ | if (ErrorLevel) { | ||
+ | MsgBox 0x40010, Error, Error while downloading. | ||
+ | FileDelete % A_ScriptDir " | ||
+ | ExitApp 1 | ||
+ | } | ||
+ | SetTimer Percentage, Delete | ||
+ | Gui Download: | ||
+ | |||
+ | ; Close if running | ||
+ | WinKill % " | ||
+ | |||
+ | ; Extract | ||
+ | shell := ComObjCreate(" | ||
+ | items := shell.Namespace(fileName).Items | ||
+ | shell.Namespace(A_ScriptDir).CopyHere(items, | ||
+ | |||
+ | ; Truncate the file | ||
+ | FileOpen(fileName, | ||
+ | |||
+ | ; Empty temp files | ||
+ | if (FileExist(A_ScriptDir " | ||
+ | FileRemoveDir % A_ScriptDir " | ||
+ | FileCreateDir % A_ScriptDir " | ||
+ | } | ||
+ | |||
+ | ; Run | ||
+ | Run Code.exe, % A_ScriptDir | ||
+ | |||
+ | |||
+ | ExitApp ; Finished | ||
+ | |||
+ | |||
+ | ; Progress | ||
+ | Percentage: | ||
+ | FileGetSize size, % fileName | ||
+ | GuiControl Download:, Static1, % " | ||
+ | return | ||
+ | </ | ||
+ | ++++ | ||
+ | ===== Extensions ===== | ||
+ | |||
+ | The core functionality of VSCode can be easily extended with the Extensions Marketplace; | ||
+ | |||
+ | AutoHotkey support in VSCode is not bundled out of the box, thus extensions allow full utilization of IDE features (such as syntax highlighting, | ||
+ | |||
+ | While there are a few AutoHotkey-related extensions available, the one made by [[https:// | ||
+ | |||
+ | To install the required extension click " | ||
+ | |||
+ | ==== AutoHotkey++ ==== | ||
+ | |||
+ | ++Extension: | ||
+ | |||
+ | In order to test create a new file (press Ctrl+n) and type/paste: | ||
+ | |||
+ | <code AutoHotkey test.ahk> | ||
+ | #Warn All, OutputDebug | ||
+ | hello := "Hello " | ||
+ | world := " | ||
+ | OutputDebug % hello world | ||
+ | OutputDebug % test123test | ||
+ | </ | ||
+ | |||
+ | Save the file with '' | ||
+ | |||
+ | ++Debug Console|\\ {{https:// | ||
+ | |||
+ | Normally a '' | ||
+ | |||
+ | ++Warning|\\ {{https:// | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ==== Optional ==== | ||
+ | |||
+ | |||
+ | The following are a few extensions that have a positive impact on the overall coding experience IMO (as always YMMV). The procedure to install them is the same as before: | ||
+ | |||
+ | - Press Ctrl+p | ||
+ | - Type/paste '' | ||
+ | - Hit Enter and after a few seconds, the extension is installed. | ||
+ | |||
+ | However, you could also take the scenic route to find out more about the extension' | ||
+ | |||
+ | - Click " | ||
+ | - Type/paste the extension ID, press Enter, and review. | ||
+ | - If you wish to proceed, click on the small '' | ||
+ | |||
+ | === Bookmarks === | ||
+ | |||
+ | Jumping between sections of code is something you'll always find yourself doing when dealing with files that require you to scroll is a nuance. There are of course methods to avoid manually looking through a file like the "Code Outline", | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | === Diff === | ||
+ | |||
+ | VSCode has inline Diff support but only when working in a project with SCM configured, for chunk-based diff (with Clipboard support) [[https:// | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | When dealing with a file as a whole and inline changes or side-to-side comparison is needed [[https:// | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | === Overtype === | ||
+ | |||
+ | This is the first editor I've used without native support for overtype, weird. | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | === Sublime Text keymap === | ||
+ | |||
+ | If you ever used Sublime Text Editor and got used to its bindings, a must is to keep consistency or avoid re-training muscle memory. A big plus of [[https:// | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | === vscode-autohotkey-debug === | ||
+ | |||
+ | While Mark's extension is more than enough for the majority of users, I've found that the (unnamed) extension provided by [[https:// | ||
+ | |||
+ | * ID: '' | ||
+ | |||
+ | ===== Usage Examples ===== | ||
+ | |||
+ | This is not a comprehensive tutorial, but a quick guide aimed at covering the basics of how to effectively enable and utilize AHK debugging support in VSCode. | ||
+ | |||
+ | ==== OutputDebug ==== | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | <code AutoHotkey test.ahk> | ||
+ | foo := {} | ||
+ | foo.bar := "Hello " | ||
+ | foo[" | ||
+ | OutputDebug Hello World! | ||
+ | OutputDebug % foo[" | ||
+ | OutputDebug % " | ||
+ | </ | ||
+ | |||
+ | ++Debug Console|\\ {{https:// | ||
+ | |||
+ | Additional benefits against methods like: | ||
+ | |||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | To halt code execution, we have [[# | ||
+ | |||
+ | ==== Breakpoints ==== | ||
+ | |||
+ | Breakpoints allow the user to stop at any given line and inspect the code mid-execution, | ||
+ | |||
+ | To set a breakpoint click to the left of the line numbers, or set up a keyboard shortcut (look for '' | ||
+ | |||
+ | Breakpoints can be set in any line but if they are set in comments or directives the interpreter will stop in the next available statement. In the following example, a breakpoint is set inside a '' | ||
+ | |||
+ | After setting the breakpoint, start the debugger by: | ||
+ | |||
+ | * Press F5. | ||
+ | * From the menu: Run > Start Debugger. | ||
+ | * Clicking the " | ||
+ | |||
+ | ++Start of the '' | ||
+ | |||
+ | ++'' | ||
+ | |||
+ | ++'' | ||
+ | |||
+ | ++'' | ||
+ | |||
+ | ++Session finished|\\ {{https:// | ||
+ | |||
+ | ==== Debug Actions ==== | ||
+ | |||
+ | The basic actions on the vast majority of debuggers are: | ||
+ | |||
+ | * **Continue**: | ||
+ | * **Step Over**: Evaluates the next statement ahead. | ||
+ | * **Step Into**: Goes inside the next statement (if user-defined). | ||
+ | * **Step Out**: Continues to the upper layer in the stack. | ||
+ | |||
+ | ==== More ==== | ||
+ | |||
+ | For a more robust guide, please refer to the [[https:// | ||
+ | |||
+ | After this point, virtually every debugging tutorial explains the same concepts (once you remove language from the equation). For even more details: search engines, forums, subreddits, IRC/Discord servers, etc. can be of great help. | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ===== Profiles ===== | ||
+ | |||
+ | Profiles can be set to test various versions of AHK (ANSI, Unicode x86/x64, AHK_H, v2) and to start debugging a specific file (instead of the one currently in the editor). Click the " | ||
+ | |||
+ | ++++ launch.json | | ||
+ | <code JavaScript launch.json> | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | ] | ||
+ | } | ||
+ | </ | ||
+ | ++++ | ||
+ | |||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | ++++ Predefined Variables | | ||
+ | <code JavaScript> | ||
+ | ${workspaceFolder} | ||
+ | ${workspaceFolderBasename} // Name of the folder opened (without any slashes). | ||
+ | ${file} | ||
+ | ${relativeFile} | ||
+ | ${relativeFileDirname} | ||
+ | ${fileBasename} | ||
+ | ${fileBasenameNoExtension} // Current opened file's basename with no file extension. | ||
+ | ${fileDirname} | ||
+ | ${fileExtname} | ||
+ | ${cwd} | ||
+ | ${lineNumber} | ||
+ | ${selectedText} | ||
+ | ${execPath} | ||
+ | ${defaultBuildTask} | ||
+ | </ | ||
+ | ++++ | ||
+ | |||
+ | |||
+ | To add profiles just add objects into the '' | ||
+ | |||
+ | ++++ Profiles example | | ||
+ | <code JavaScript> | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | }, | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | ++++ | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ===== Misc. configurations ===== | ||
+ | |||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | |||
+ | ==== Workspace trust ==== | ||
+ | |||
+ | The feature is annoying and even the authors acknowledge it[(https:// | ||
+ | |||
+ | ~~REFNOTES~~ | ||
+ | ==== Fix F9 overlap ==== | ||
+ | |||
+ | Fixing the overlapping F9 is far easier via editing the configuration rather than going through the UI. Press Ctrl+p, type/paste ''> | ||
+ | |||
+ | <code JavaScript keybindings.json> | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | }, | ||
+ | </ | ||
+ | |||
+ | After saving, you should have the defaults: | ||
+ | |||
+ | * F5 to start debugging. | ||
+ | * F9 to toggle breakpoints. | ||
+ | |||
+ | ==== Inline values ==== | ||
+ | |||
+ | To have an overlay with the parsed values of the expressions as soon as you step over them, open Settings (Ctrl+,) in the search bar, paste/type '' | ||
+ | |||
+ | ==== Always use BOM ==== | ||
+ | |||
+ | AutoHotkey only plays nice with Unicode characters if scripts have the proper character encoding (see [[https:// | ||
+ | |||
+ | <code JavaScript settings.json> | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | </ | ||
+ | ==== Replace PowerShell ==== | ||
+ | |||
+ | To change the slower PowerShell for the command prompt (*ie* '' |