Skip to content

Instantly share code, notes, and snippets.

@sg-s
Last active August 1, 2023 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sg-s/8befe4bc2a139b9b85f2 to your computer and use it in GitHub Desktop.
Save sg-s/8befe4bc2a139b9b85f2 to your computer and use it in GitHub Desktop.
Autocomplete commands in bash by using arrow keys
# supports history search using up and down arrows
# add this to your ~/.bashrc
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
bind '"\eOA": history-search-backward'
bind '"\eOB": history-search-forward'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment