Skip to content

Instantly share code, notes, and snippets.

View jvolden's full-sized avatar

Jon Volden jvolden

View GitHub Profile
@jvolden
jvolden / gitignores.md
Last active February 27, 2018 22:41
Removing .gitignore files from repo

First:

git rm -r --cached . 
git add .

Then:

@jvolden
jvolden / tab_escaping.json
Created February 27, 2018 00:45
Tab Escaping in Sublime Text 3
[
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "has_next_field", "operator": "not_equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "not_equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "(`|\\)|\\]|\\}|'|\").*", "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "(`|\\(|\\[|\\{|'|\")", "match_all": true }
]
@jvolden
jvolden / neovin_escape.json
Last active February 27, 2018 00:26
NeoVintageous Escape Sequence
[
{ "keys": ["j", "j"], "command": "_enter_normal_mode", "args": {"mode": "mode_insert"}, "context":
[
{"key": "vi_insert_mode_aware"}
]
}
]