Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. bindkey '^[k' up-line-or-history
  2. bindkey '^[j' down-line-or-history
  3.  
  4. vi-cmd-up-line-history() {
  5. zle vi-cmd-mode
  6. zle up-line-or-history
  7. }
  8. zle -N vi-cmd-up-line-history
  9. bindkey -M vicmd '^[k' vi-cmd-up-line-history
  10. bindkey -M viins '^[k' vi-cmd-up-line-history
  11.  
  12. vi-cmd-down-line-history() {
  13. zle vi-cmd-mode
  14. zle down-line-or-history
  15. }
  16. zle -N vi-cmd-down-line-history
  17. bindkey -M vicmd '^[j' vi-cmd-down-line-history
  18. bindkey -M viins '^[j' vi-cmd-down-line-history
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement