home *** CD-ROM | disk | FTP | other *** search
/ 73.234.73.94.ip.orionnet.ru / 73.234.73.94.ip.orionnet.ru.tar / 73.234.73.94.ip.orionnet.ru / Far30b3000.x86.20121208.msi / Panel.CtrlShiftPgUpDn.farconfig < prev    next >
Extensible Markup Language  |  2012-10-31  |  745b  |  26 lines

  1. ∩╗┐<?xml version="1.0" encoding="UTF-8" ?>
  2. <farconfig>
  3.   <macros>
  4.     <keymacros>
  5.       <macro area="Shell" key="CtrlShiftPgUp" flags="DisableOutput" description="Jump to the previous folder on the same level">
  6. <text>
  7.   if not APanel.Root then Keys('CtrlPgUp') end
  8.   if not APanel.Bof then
  9.     Keys('Up')
  10.     if APanel.Folder then Keys('CtrlPgDn') end
  11.   end
  12. </text>
  13.       </macro>
  14.       <macro area="Shell" key="CtrlShiftPgDn" flags="DisableOutput" description="Jump to the next folder on the same level">
  15. <text>
  16.   if not APanel.Root then Keys('CtrlPgUp') end
  17.   if not APanel.Eof then
  18.     Keys('Down')
  19.     if APanel.Folder then Keys('CtrlPgDn') end
  20.   end
  21. </text>
  22.       </macro>
  23.     </keymacros>
  24.   </macros>
  25. </farconfig>
  26.