]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/ui/gadgets/editors/editors-docs.factor
Use symbols for shapes
[factor.git] / basis / ui / gadgets / editors / editors-docs.factor
index 180d5c46fc8f35bf7061aa5d002c65776ad34949..15da0b931ef74fe8d2f2be03d75561d7a2ffdbdb 100644 (file)
@@ -33,6 +33,28 @@ HELP: <editor>
 
 { editor-caret editor-mark } related-words
 
+HELP: caret-is-shape
+{ $description
+  "Shape is defined as line, box, or filled box"
+}
+$nl
+{ $code
+"  IN: ui.gadgets.editors"
+"  +box+ caret-shape set-global"
+""
+} print-element
+$nl
+{ $table
+  { "Value" "Shape" }
+  { "+line+" "line (default)" }
+  { "+box+" "box" }
+  { "+filled+" "filled box" }
+} print-element
+
+{ $references   "Set desired shape in your .factor-rc file" 
+ "rc-files" }
+    ;
+
 HELP: editor-caret
 { $values { "editor" editor } { "loc" "a pair of integers" } }
 { $description "Outputs the current caret location as a line/column number pair." } ;