Vim
Last updated 1 month and 26 days ago - September 4, 2023
Tutorials
- Fireship - Vim in 100 seconds (and beyond)
- FreeCodeCamp - Vim Tutorial for Beginners
- Vim exercises to download - Learn Vim in practice
Polish tutorials for Vim
Extensions for Vscode
- Vim emulator for Visual Studio Code
- Learn Vim - full Vim tutorial inside Visual Studio Code
- Vim Cheatsheet
Think in Vim
Remap CAPSLOCK key to ESCAPE
Itβs popular among Vim users to remap CAPSLOCK key as ESCAPE because ESC is used to escape INSERT mode in Vim.
AutoHotkey script
On Windows you can remap that using AutoHotkey script.
You can learn more about AutoHotkey here.
;this script will remap CapsLock to Esc only inside Visual Studio Code
#if WinActive("ahk_exe Code.exe")
CapsLock::ESC
#if