Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $if Bash
  2. # Search history back and forward using page-up and page-down
  3. "e[5~": history-search-backward
  4. "e[6~": history-search-forward
  5.  
  6. "e[A": history-search-backward # arrow up
  7. "e[B": history-search-forward # arrow down
  8.  
  9. # Completion
  10. set match-hidden-files off
  11. set page-completions off
  12. set completion-query-items 350
  13. set show-all-if-ambiguous on
  14.  
  15. $endif
  16.  
  17. R version 3.0.1 (2013-05-16) -- "Good Sport"
  18. Copyright (C) 2013 The R Foundation for Statistical Computing
  19. Platform: x86_64-pc-linux-gnu (64-bit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement