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
Finally got copy/paste from system clipboard to work for ViM in OSX. 💪😭 This is confirmed to work on iterm2, supposedly it should work with Terminal.app too. | |
1) Upgrade vim to 7.4 with homebrew: | |
``` bash | |
brew install vim | |
``` | |
2) Since --override-system-vi wasn't working for me, or brew link etc, backup and overwrite the new version to get 7.4 to load w/ a simple 'vim' in the command-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
#simple bookmarking | |
function bookmarklist { | |
i=0 | |
while ((i++)); read -r line; do | |
echo "$i: $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
<script> | |
/* | |
Timer Ver. 3 | |
The purpose of this series of fiddles is to explore properly dividing the program logic into model and controller | |
while appropriately executing the Angular.js 'way' of achieving that result | |
- the model has been moved outside the controller | |
*/ | |
function timerCtrl($scope) { |
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
<style> | |
.art { | |
height: 400px; | |
width: 400px; | |
background: url('http://i.imgur.com/EQl5vLz.jpg') no-repeat; | |
} | |
.button { | |
position: absolute; | |
top: 2.5em; |