Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@j-walker23
j-walker23 / keys.coffee
Created July 30, 2015 21:48
Keys to remeber
alt+Sh+S // See current snippets for file type
@j-walker23
j-walker23 / emmet.html
Created June 9, 2015 11:14
emmet fast shit for jetbrains
ul#nav>li.item$*4>a{Item $} // expands to cool shit
@j-walker23
j-walker23 / bash.sh
Last active August 29, 2015 14:22
bash cmds
!$ # dir from last command -- cd !$ after mkdir /your/mom
# recursive search for text, -H display file names text found in
grep -H -r "redeem reward" /home/tom
@j-walker23
j-walker23 / vi-edit.js
Last active August 29, 2015 14:22
vi-editing
// multi first char insert
C-v // select lines
shift-i // enter char
esc
o // insert new line below and enter insert mode
O // insert new line above and enter insert mode
r // replace current char with next char typed
@j-walker23
j-walker23 / vi-moving.js
Last active August 29, 2015 14:22
vi moving commands
^ // beginning text on current line
$ // end of current line
// move up and down on the beginning of each line
- // no shift
+ // with shift
w // start of word
W // shift to next blank space
@j-walker23
j-walker23 / 0_reuse_code.js
Last active August 29, 2015 14:22
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console