changed some shortcuts in input-buffer
This commit is contained in:
parent
5a249d54d4
commit
cfec39d156
|
@ -145,6 +145,14 @@
|
||||||
(begin
|
(begin
|
||||||
(set! pos-col (+ line-length 2)))))
|
(set! pos-col (+ line-length 2)))))
|
||||||
|
|
||||||
|
;;Ctrl+k -> Zeile löschen
|
||||||
|
((= ch 11)
|
||||||
|
(if can-write
|
||||||
|
(let ((text-front (sublist text 0 (- (length text) 1))))
|
||||||
|
(begin
|
||||||
|
(set! text (append text-front '("")))
|
||||||
|
(set! pos-col 2)))))
|
||||||
|
|
||||||
;;Ctrl+f -> History-forward
|
;;Ctrl+f -> History-forward
|
||||||
((= ch 6)
|
((= ch 6)
|
||||||
(if can-write
|
(if can-write
|
||||||
|
|
Loading…
Reference in New Issue