Changes between Initial Version and Version 1 of Keybindings


Ignore:
Timestamp:
Aug 31, 2009, 12:32:41 AM (15 years ago)
Author:
kevinr@mit.edu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Keybindings

    v1 v1  
     1== vi-Style Movement Keys ==
     2
     3If you're a heavy vi(,m) user, you may find yourself confused by applications, such as BarnOwl, which require you to leave the home row to move around.  Adding these lines to your .owl/startup file will fix that and allow you to navigate normally.
     4
     5
     6{{{
     7# vi-style movement keybindings
     8bindkey recv k command recv:prev
     9bindkey recv j command recv:next
     10bindkey recv h command recv:shiftleft
     11bindkey recv l command recv:shiftright
     12
     13# rebind the default bindings of those keys
     14bindkey recv H command help
     15bindkey recv L command blist
     16bindkey recv J command start-command jwrite
     17}}}
     18
     19== Display a Multi-Line Zsig ==
     20
     21Some Zephyr users set multi-line zsigs, but the default style doesn't display them properly.  This keybinding pops up a window containing the full zsig.
     22
     23{{{
     24# display the full zsig of the current message
     25bindkey recv s command pperl BarnOwl::getcurmsg()->zsig
     26}}}