home *** CD-ROM | disk | FTP | other *** search
- \ Makes the bottom half of the screen scroll without affecting the top half.
- \
- \ split-screen Scroll the bottom half of the screen
- \ whole-screen Scroll the whole screen
-
- only forth also hidden definitions
- : scroll-bottom ( -- )
- (#lines 2/ 0 at delete-line
- (#lines 1- 0 at
- #out off 1 #line +!
- ;
- : half-#lines ( -- n ) (#lines 2/ ;
-
- only forth hidden also forth definitions
-
- : split-screen ( -- )
- ['] scroll-bottom is cr
- ['] half-#lines is #lines
- ;
- : whole-screen ( -- )
- ['] crlf is cr
- ['] (#lines is #lines
- ;
- only forth also definitions
-