From 632b21159d93dce0dc87c2e54ef847d4b0be0c34 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Thu, 8 Jan 2009 18:56:20 -0600 Subject: [PATCH] Mention multiline editor commands in editor docs --- basis/ui/gadgets/editors/editors-docs.factor | 1 + basis/ui/gadgets/editors/editors.factor | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 }