Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. bind '"\e[A": history-search-backward'
  2. bind '"\e[B": history-search-forward'
  3. bind '"\C-H": backward-kill-word'
  4. bind '"\e[M": kill-word'
  5. bind '"\e[P": delete-char'
  6.  
  7. set_title() {
  8. /usr/bin/printf '\e]2;%s\e\' "$1"
  9. }
  10.  
  11. cd() {
  12. builtin cd "$@" && \
  13. set_title "$PWD"
  14. }
  15.  
  16. set_title "$PWD"
  17.  
  18. [ -f /usr/share/bash-completion ] && . /usr/share/bash-completion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement