Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Enable Keypad
  2. # 0 . Enter
  3. bindkey -s "^[Op" "0"
  4. bindkey -s "^[On" "."
  5. bindkey -s "^[OM" "^M"
  6. # 1 2 3
  7. bindkey -s "^[Oq" "1"
  8. bindkey -s "^[Or" "2"
  9. bindkey -s "^[Os" "3"
  10. # 4 5 6
  11. bindkey -s "^[Ot" "4"
  12. bindkey -s "^[Ou" "5"
  13. bindkey -s "^[Ov" "6"
  14. # 7 8 9
  15. bindkey -s "^[Ow" "7"
  16. bindkey -s "^[Ox" "8"
  17. bindkey -s "^[Oy" "9"
  18. # + - * / =
  19. bindkey -s "^[Ol” “+”
  20. bindkey -s "^[Om" "-"
  21. bindkey -s "^[Oj" "*"
  22. bindkey -s "^[Oo" "/"
  23. bindkey -s "^[OX" "="
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement