Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@aleffert
aleffert / subtree
Last active December 30, 2015 12:49 — forked from inhies/subtree
#!/bin/bash
# subtree -- a utility to help working with git subtree's
# creator: inhies
# modified: aleffert
# 24 November 2013
version=1.1.2
function usage() {
@inhies
inhies / subtree
Last active November 18, 2016 21:15
Subtree is a helper utility for working with git subtrees. Easily add, update, and remove subtrees from your git repo.
#!/bin/bash
# subtree -- a utility to help working with git subtree's
# creator: inhies
# 24 November 2013
version=1.1.1
function usage() {
case "$1" in
@kconragan
kconragan / keyrepeat.shell
Last active December 4, 2023 03:40
Enable key repeat in Apple Lion for Sublime Text in Vim mode
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key
# that enables you to choose a character from a menu of options. If you are on Lion
# try it by pressing and holding down 'e' in any app that uses the default NSTextField
# for input.
#
# It's a nice feature and continues the blending of Mac OS X and iOS features. However,
# it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode,
# as it means you cannot press and hold h/j/k/l to move through your file. You have
# to repeatedly press the keys to navigate.