-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make up-arrow autocomplete more nicerer in the vagrant box
- Loading branch information
1 parent
ff6f7e1
commit 6d5ca5e
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "=== Begin Vagrant Provisioning using 'config/vagrant/bash_setup.sh'" | ||
|
||
###################################################################### | ||
# Will make up-arrow only fetch previous commands based on what we've already typed: | ||
cat > /home/vagrant/.inputrc <<EOF | ||
"\e[A": history-search-backward | ||
"\e[B": history-search-forward | ||
set show-all-if-ambiguous on | ||
set completion-ignore-case on | ||
EOF | ||
|
||
echo "=== End Vagrant Provisioning using 'config/vagrant/bash_setup.sh'" | ||
|