Tested on macOS 12.5 Use at own risk
Run this command to set caps lock keyboard button to the backspace
Note this is not persistent. You will need to do this on each boot or add to your boot procedure/profile.
| # C-b === control-b | |
| # Splt pane vertically | |
| C-b % | |
| # Split pane horizontally | |
| C-b " | |
| # Close pane or window | |
| exit |
| "keybindings": [ | |
| { | |
| "command": "closeTab", | |
| "keys": ["ctrl+w"] | |
| }, | |
| { | |
| "command": "newTab", | |
| "keys": ["ctrl+t"] | |
| }, | |
| { |
| <snippet> | |
| <content><![CDATA[ | |
| /** @test */ | |
| function ${1:sexy_test_name_here}() | |
| { | |
| // Arrange | |
| ${3} | |
| // Act | |
| ${4} |