1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
\ command line edit and history support 16oct94py
\ Copyright (C) 1995 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation; either version 2
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program; if not, write to the Free Software
\ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
:noname
char [char] @ - ;
:noname
char [char] @ - postpone Literal ;
interpret/compile: ctrl ( "<char>" -- ctrl-code )
\ command line editing 16oct94py
: >string ( span addr pos1 -- span addr pos1 addr2 len )
over 3 pick 2 pick chars /string ;
: type-rest ( span addr pos1 -- span addr pos1 back )
>string tuck type ;
: (del) ( max span addr pos1 -- max span addr pos2 )
1- >string over 1+ -rot move
rot 1- -rot #bs emit type-rest bl emit 1+ backspaces ;
: (ins) ( max span addr pos1 char -- max span addr pos2 )
>r >string over 1+ swap move 2dup chars + r> swap c!
rot 1+ -rot type-rest 1- backspaces 1+ ;
: ?del ( max span addr pos1 -- max span addr pos2 0 )
dup IF (del) THEN 0 ;
: (ret) type-rest drop true space ;
: back dup IF 1- #bs emit ELSE #bell emit THEN 0 ;
: forw 2 pick over <> IF 2dup + c@ emit 1+ ELSE #bell emit THEN 0 ;
: eof 2 pick over or 0= IF
bye
ELSE 2 pick over <>
IF forw drop (del) ELSE #bell emit THEN 0
THEN ;
' forw ctrl F cells ctrlkeys + !
' back ctrl B cells ctrlkeys + !
' ?del ctrl H cells ctrlkeys + !
' eof ctrl D cells ctrlkeys + !
' (ins) IS insert-char
\ history support 16oct94py
0 Value history \ history file fid
2Variable forward^
2Variable backward^
2Variable end^
: force-open ( addr len -- fid )
2dup r/w open-file 0<
IF drop r/w create-file throw ELSE nip nip THEN ;
: get-history ( addr len -- )
force-open to history
history file-size throw
2dup forward^ 2! 2dup backward^ 2! end^ 2! ;
s" GFORTHHIST" getenv dup 0= [IF]
2drop s" /gforth.his"
[THEN] get-history
: history-cold
Defers 'cold
s" GFORTHHIST" getenv dup 0= IF
2drop s" /gforth.his"
THEN get-history ;
' history-cold IS 'cold
\ moving in history file 16oct94py
: clear-line ( max span addr pos1 -- max addr )
backspaces over spaces swap backspaces ;
: clear-tib ( max span addr pos -- max 0 addr 0 false )
clear-line 0 tuck dup ;
: hist-pos ( -- ud ) history file-position throw ;
: hist-setpos ( ud -- ) history reposition-file throw ;
: get-line ( addr len -- len' flag )
swap history read-line throw ;
: next-line ( max span addr pos1 -- max span addr pos2 false )
clear-line
forward^ 2@ 2dup hist-setpos backward^ 2!
2dup get-line drop
hist-pos forward^ 2!
tuck 2dup type 0 ;
: prev-line ( max span addr pos1 -- max span addr pos2 false )
clear-line backward^ 2@ forward^ 2!
over 2 + negate s>d backward^ 2@ d+ 0. dmax 2dup hist-setpos
BEGIN
backward^ 2! 2dup get-line WHILE
hist-pos 2dup forward^ 2@ d< WHILE
rot drop
REPEAT 2drop THEN
tuck 2dup type 0 ;
Create lfpad #lf c,
: (enter) ( max span addr pos1 -- max span addr pos2 true )
>r end^ 2@ hist-setpos
2dup swap history write-line throw
hist-pos 2dup backward^ 2! end^ 2!
r> (ret) ;
\ some other key commands 16oct94py
: first-pos ( max span addr pos1 -- max span addr 0 0 )
backspaces 0 0 ;
: end-pos ( max span addr pos1 -- max span addr span 0 )
type-rest 2drop over 0 ;
: extract-word ( addr len -- addr' len' ) dup >r
BEGIN 1- dup 0>= WHILE 2dup + c@ bl = UNTIL THEN 1+
tuck + r> rot - ;
Create prefix-found 0 , 0 ,
: word-lex ( nfa1 nfa2 -- -1/0/1 )
dup 0=
IF
2drop 1 EXIT
THEN
name>string 2>r name>string
dup r@ =
IF
rdrop r> capscomp 0<= EXIT
THEN
r> <
nip rdrop ;
: search-voc ( addr len nfa1 nfa2 -- addr len nfa3 )
>r
BEGIN
dup
WHILE
>r dup r@ name>string nip <=
IF
2dup r@ name>string drop capscomp 0=
IF
r> dup r@ word-lex
IF
dup prefix-found @ word-lex
0>=
IF
rdrop dup >r
THEN
THEN
>r
THEN
THEN
r> @
REPEAT
drop r> ;
: prefix-string ( addr len nfa -- addr' len' )
dup prefix-found ! ?dup
IF
name>string rot /string rot drop
dup 1+ prefix-found cell+ !
ELSE
2drop s" " prefix-found cell+ off
THEN ;
: search-prefix ( addr1 len1 -- addr2 len2 )
0 vp dup @ 1- cells over +
DO I 2@ <>
IF I cell+ @ @ swap search-voc THEN
[ -1 cells ] Literal +LOOP
prefix-string ;
: kill-expand ( max span addr pos1 -- max span addr pos2 )
prefix-found cell+ @ 0 ?DO (del) LOOP ;
: tib-full? ( max span addr pos addr' len' -- max span addr pos addr1 u flag )
5 pick over 4 pick + prefix-found @ 0<> - < ;
: tab-expand ( max span addr pos1 -- max span addr pos2 0 )
kill-expand 2dup extract-word search-prefix
tib-full?
IF 7 emit 2drop 0 0 prefix-found 2!
ELSE bounds ?DO I c@ (ins) LOOP THEN
prefix-found @ IF bl (ins) THEN 0 ;
: kill-prefix ( key -- key )
dup #tab <> IF 0 0 prefix-found 2! THEN ;
' kill-prefix IS everychar
' next-line ctrl N cells ctrlkeys + !
' prev-line ctrl P cells ctrlkeys + !
' clear-tib ctrl K cells ctrlkeys + !
' first-pos ctrl A cells ctrlkeys + !
' end-pos ctrl E cells ctrlkeys + !
' (enter) #lf cells ctrlkeys + !
' (enter) #cr cells ctrlkeys + !
' tab-expand #tab cells ctrlkeys + !
|