== vi-Style Movement Keys == If 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. {{{ # vi-style movement keybindings bindkey recv k command recv:prev bindkey recv j command recv:next bindkey recv h command recv:shiftleft bindkey recv l command recv:shiftright # rebind the default bindings of those keys bindkey recv H command help bindkey recv L command blist bindkey recv J command start-command jwrite }}} It you want more complete vim-style behavior, add: {{{ # vim-style behavior bindkey recv m command recv:mark bindkey recv ` command recv:swapmark bindkey recv n command search bindkey recv N command search -r alias $ last alias 0 first }}} == Display a Multi-Line Zsig == Some 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. {{{ # display the full zsig of the current message bindkey recv s command pperl BarnOwl::getcurmsg()->zsig }}}