Skip to content

Instantly share code, notes, and snippets.

View byrontuckett's full-sized avatar

Byron Tuckett byrontuckett

View GitHub Profile
@byrontuckett
byrontuckett / caps-lock-remap-macos.md
Last active December 26, 2025 12:18
How to remap caps lock to backspace in macOS

Remap useless caps lock buttopn to backspace.

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.

@byrontuckett
byrontuckett / tmux-goodness
Last active August 10, 2022 13:48
Goodies with tmux
# 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"]
},
{
@byrontuckett
byrontuckett / NewTestMethod.sublime-snippet
Last active September 16, 2017 04:11
NewTestMethod.sublime-snippet. Kudos to Adam Wathan's TDD course...
<snippet>
<content><![CDATA[
/** @test */
function ${1:sexy_test_name_here}()
{
// Arrange
${3}
// Act
${4}