Advertisement
nreinhardt

Untitled

Mar 23rd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. " Ctrl-F should use the browser's native 'find' functionality.
  2. unbind <C-f>
  3.  
  4. " But also support Tridactyl search too.
  5. bind / fillcmdline find
  6. bind ? fillcmdline find -?
  7. bind n findnext 1
  8. bind N findnext -1
  9.  
  10. " K and J should move between tabs. x should close them.
  11. bind J tabprev
  12. bind K tabnext
  13. bind x tabclose
  14.  
  15. bind d scrollline 30
  16. bind e scrollline -30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement