- Install
Terminus
from the Package Control - Add these items to the User Key Bindings:
// TERMINAL
{"keys": ["alt+`"], "command": "toggle_terminus_panel"},
{"keys": ["super+t"], "command": "terminus_open" },
- How to use:
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Danilo Prates", | |
"label": "Product Management | WEB3 | Blockchain | Cryptocurrency", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "", | |
"summary": "", |
Terminus
from the Package Control// TERMINAL
{"keys": ["alt+`"], "command": "toggle_terminus_panel"},
{"keys": ["super+t"], "command": "terminus_open" },
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ "keys": ["ctrl+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["alt+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
// { "keys": ["super+m"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["ctrl+e"], "command": "run_emmet_action", "args": {"action": "expand_abbreviation"} }, | |
{ "keys": ["super+alt+i"], "command": "replace_all" }, | |
{ "keys": ["super+shift+k"], "command": "reveal_in_side_bar"}, |
var getGlobals = () => { | |
let defaults = [ "stop", "open", "alert", "confirm", "prompt", "print", "requestAnimationFrame", "cancelAnimationFrame", "requestIdleCallback", "cancelIdleCallback", "captureEvents", "releaseEvents", "getComputedStyle", "matchMedia", "moveTo", "moveBy", "resizeTo", "resizeBy", "getSelection", "find", "getMatchedCSSRules", "webkitRequestAnimationFrame", "webkitCancelAnimationFrame", "btoa", "atob", "setTimeout", "clearTimeout", "setInterval", "clearInterval", "createImageBitmap", "scroll", "scrollTo", "scrollBy", "fetch", "postMessage", "webkitRequestFileSystem", "blur", "focus", "webkitResolveLocalFileSystemURL", "close", "openDatabase", "chrome", "DoodleNotifier", "google", "gws_wizbind", "_", "_DumpException", "W_jd", "ntp_", "ntp_ba", "ntp_fa", "ntp_ca", "ntp_ha", "ntp_sa", "ntp_va", "ntp_wa", "ntp_Aa", "ntp_Ba", "ntp_Da", "ntp_ya", "ntp_Ga", "ntp_Ha", "ntp_La", "ntp_Ca", "ntp_Qa", "ntp_Ra", "ntp_Pa", "ntp_Ta", "ntp_1a", "ntp_Xa", "ntp_4a", "ntp_2a", "ntp_db", "ntp_Ka", "ntp_eb" |
{ | |
"Seti_ClosedFolder_remove": false, | |
"Seti_SB_bright": true, | |
"Seti_SB_med": true, | |
"Seti_lime_tab": true, | |
"Seti_lime_tabclose": true, | |
"Seti_orange_button": true, | |
"Seti_sb_small_padding": true, | |
"Seti_tabs_small": true, | |
"binary_file_patterns": |
const flattenArray = (arr) => { | |
const flattenLevel = arr => [].concat(...arr); | |
const hasArray = item => {return Array.isArray(item);} | |
do { | |
arr = flattenLevel(arr); | |
} while (arr.findIndex(hasArray) > 0); | |
amend='git commit --amend' | |
g=git | |
ga='git add' | |
gaa='git add --all' | |
gac='git add . && git commit -v' | |
gapa='git add --patch' | |
gb='git branch' | |
gba='git branch -a' | |
gbda='git branch --merged | command grep -vE "^(\*|\s*master\s*$)" | command xargs -n 1 git branch -d' | |
gbl='git blame -b -w' |