This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"abbrev":"AF", | |
"name":"Afghanistan", | |
"postal":"[0-9]{4}" | |
}, | |
{ | |
"abbrev":"AL", | |
"name":"Albania", | |
"postal":"(120|122)[0-9]{2}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | Shortcut | Action | | |
|---|---------------------|---------------------------------------------| | |
| x | ⌘ + n | Open new window | | |
| x | ⌘ + Shift + n | Open new Incognito window | | |
| x | ⌘ + t | Open new tab, and jump to it | | |
| x | ⌘ + Shift + t | Reopen previously closed tabs | | |
| x | ⌘ + Shift + ] | Jump to the next tab | | |
| x | ⌘ + Shift + [ | Jump to the previous tab | | |
| x | ⌘ + 1 through ⌘ + 8 | Jump to a specific tab | | |
| x | ⌘ + 9 | Jump to the last tab | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jt -t gruvboxd -f hack -fs 10 -tf latosans -tfs 12 -nf latosans -nfs 9 -cellw 75% -lineh 120 -altp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote prune origin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote prune origin --dry-run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch --merged | grep -E -v "master|develop" | xargs git branch -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
po = !git remote prune origin | |
dm = !git branch --merged | grep -E -v \"master|develop\" | xargs git branch -d |