Last active
August 1, 2024 17:34
-
-
Save jfreeze/8894279 to your computer and use it in GitHub Desktop.
Revisions
-
jfreeze revised this gist
Feb 9, 2014 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,3 +7,8 @@ source ~/.bash_profile # To run iex WITHOUT rlwrap \iex # Note You cannot have vi bindings through rlwrap AND command completion at the same time. The author of rlwrap explains the reason here: http://stackoverflow.com/questions/9210931/is-there-a-way-of-running-rlwrap-with-tab-completion-disabled -
jfreeze revised this gist
Feb 9, 2014 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,3 +3,7 @@ brew install rlwrap # on OSX echo "alias iex='rlwrap -a foo iex'" >> ~/.bash_profile echo "set editing-mode vi" >> ~/.inputrc source ~/.bash_profile # To run iex WITHOUT rlwrap \iex -
jfreeze created this gist
Feb 9, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # VI bindings in iex: brew install rlwrap # on OSX echo "alias iex='rlwrap -a foo iex'" >> ~/.bash_profile echo "set editing-mode vi" >> ~/.inputrc source ~/.bash_profile