home *** CD-ROM | disk | FTP | other *** search
- alias lfd 'loadfd [] fd:[]_lib.fd'
- -lfd exec
- -lfd dos
- -lfd intuition
- -lfd graphics
- print '\0aPowerVisor 1.0/2.0 Beta © J.Tyberghein\0a'
- print 'Sat Aug 31 14:48:59 1991\0a\0a'
- attach 'list' $50 0 e
- attach 'cls' $51 0 e
- attach 'task' $55 0 e
- attach 'libs' $56 0 e
- attach 'devs' $57 0 e
- attach 'port' $58 0 e
- attach 'wins' $59 0 e
- print 'The 4 major fd-files are loaded\0a\0a'
- print 'New commands :\0a'
- print ' opwin <window name>\0a'
- print ' lfd <library name>\0a'
- print ' at <command string> <key name> <qualifier string>\0a\0a'
- print 'New functions :\0a'
- print ' co(<keyname>) to get the keycode for a named key (AmigaDOS 2.0)\0a'
- print ' qu(<qualifer>) to get the qualifier value\0a\0a'
- print 'Defined keys :\0a'
- print ' <right>+<alt>+<delete> to delete current history line\0a'
- print ' <shift>+<up> to search in history buffer\0a'
- print ' <right-amiga>+\'h\' to check brackets in stringgadget\0a'
- print ' <f1> list current list\0a'
- print ' <f2> to clear the current logical window\0a'
- print ' <f6> tasks, <f7> libs, <f8> devs, <f9> ports, <f10> windows\0a\0a'
-
- ;Delete the current history line with right-alt delete
- attach '{pv 26 #{pv 12};pv 4;pv 5}' 046 32 e
-
- ;Make two new functions, 'co' and 'qu'
- pvcall 0 co {-resident s:pv/GetCode}
- pvcall 0 qu {-resident s:pv/GetQual}
- alias at 'attach [1] co([2]) qu([3]) e'
-
- ;Assign the Right-shift up key to a searchhistory macro
- ;Assign the Left-shift up key to the same macro
- _a={-resident s:pv/SearchHist}
- at 'go \(_a)' up lshift
- at 'go \(_a)' up rshift
- remvar _a
-
- attach 'go \({-resident s:pv/CheckBrackets})' $25 qu(rcmd) e
-
- alias opwin '{openpw [] 0 0 300 200;openlw [] [] 80 40}'
-
-
-