⌘L | select line (repeat select next lines) |
⌘D | select word (repeat select others occurrences in context for multiple editing) |
⌃⇧M | select content into brackets |
⌘⇧↩ | insert line before |
⌘↩ | inter line after |
⌃⇧K | delete line |
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
#!/usr/bin/env python | |
# | |
# This illustrates the call-flow required to complete an OAuth request | |
# against the discogs.com API. The script will download and save a single | |
# image from the discogs.com API as an example. | |
# See README.md for further documentation. | |
# | |
import oauth2 as oauth | |
import urlparse | |
import json |
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
Show hidden characters
[ | |
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true, "separators": true}, "context": | |
[ | |
{ "key": "preceding_text", "operator": "not_regex_contains", "operand": " $", "match_all": true }, | |
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)'\"\\]}]", "match_all": true }, | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }, | |
{ "key": "selection_empty", "operator": "equal", "operand": true }, | |
] | |
}, | |
{ "keys": ["super+shift+w"], "command": "close_window" }, |
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] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
cob = checkout -b | |
com = checkout master | |
df = diff | |
l = log -p --graph --abbrev-commit --decorate | |
lg = log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative |