diff --git a/basis/ui/gadgets/editors/editors-docs.factor b/basis/ui/gadgets/editors/editors-docs.factor index 38f0bbba88..0522a6a522 100644 --- a/basis/ui/gadgets/editors/editors-docs.factor +++ b/basis/ui/gadgets/editors/editors-docs.factor @@ -85,6 +85,7 @@ ARTICLE: "gadgets-editors" "Editor gadgets" { $command-map editor "general" } { $command-map editor "caret-motion" } { $command-map editor "selection" } +{ $command-map multiline-editor "multiline" } { $heading "Editor words" } { $subsection editor } { $subsection } diff --git a/basis/ui/gadgets/editors/editors.factor b/basis/ui/gadgets/editors/editors.factor index 7320135fc7..1c87a4fe0f 100755 --- a/basis/ui/gadgets/editors/editors.factor +++ b/basis/ui/gadgets/editors/editors.factor @@ -526,7 +526,7 @@ TUPLE: multiline-editor < editor ; : ( -- editor ) multiline-editor new-editor ; -multiline-editor "general" f { +multiline-editor "multiline" f { { T{ key-down f f "UP" } previous-line } { T{ key-down f f "DOWN" } next-line } { T{ key-down f { S+ } "UP" } select-previous-line }