Vim

Last updated ago - September 5, 2023

Tutorials

Polish tutorials for Vim

Extensions for Vscode

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