^
— Jump to the beginning of the current line$
— Jump to the end of the current lineG
— Go to end of file5G
— Go to line 5
bw
— Close the current buffer
// Detect a successful submission from the Greenhouse iframe | |
// and scroll back to the top of the page. | |
window.addEventListener('message', (e) => { | |
if ( | |
e.origin === Grnhse.Settings.targetDomain && | |
e.data === 'greenhouse.confirmation' | |
) { | |
window.scrollTo(0, 0); | |
} | |
}, false); |
#application { | |
background: purple; | |
} |
<p>Poop</p> |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin placeholder($selectors) { | |
$prefixes: -moz-placeholder, -webkit-input-placeholder; | |
@each $p in $prefixes { | |
$selector: (); | |
@each $s in $selectors { |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin placeholder($selectors) { | |
$prefixes: -moz-placeholder, -webkit-input-placeholder; | |
@each $p in $prefixes { | |
$selector: (); | |
@each $s in $selectors { |
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$screen-md: 768px; | |
$screen-lg: 1100px; | |
// ---------------------------------------------------------------------------- | |
// Mixins |
// ---- | |
// Sass (v3.4.6) | |
// Compass (v1.0.1) | |
// ---- | |
%stuff { | |
padding: 10px; | |
} | |
.stuff { |
# Launches a native JavaScript terminal | |
alias js="/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc" |
# USAGE | |
# | |
# $ hidden TRUE/FALSE | |
showHidden() { defaults write com.apple.finder AppleShowAllFiles $1 && killall Finder; } | |
alias hidden=showHidden |