about summary refs log tree commit diff stats
path: root/reference.md
diff options
context:
space:
mode:
Diffstat (limited to 'reference.md')
-rw-r--r--reference.md17
1 files changed, 3 insertions, 14 deletions
diff --git a/reference.md b/reference.md
index 8256e1d..dc38bb8 100644
--- a/reference.md
+++ b/reference.md
@@ -192,9 +192,9 @@ early warning if you break something.
 
 * `state = edit.initialize_state(top, left, right, font, font_height, line_height)`
   -- returns an object that can be used to render an interactive editor widget
-  for text and line drawings starting at `y=top` on the app window, between
-  `x=left` and `x=right`. Wraps long lines at word boundaries where possible,
-  or in the middle of words (no hyphenation yet) when it must.
+  for text starting at `y=top` on the app window, between `x=left` and
+  `x=right`. Wraps long lines at word boundaries where possible, or in the
+  middle of words (no hyphenation yet) when it must.
 
 * `edit.quit()` -- calling this ensures any final edits are flushed to disk
   before the app exits.
@@ -241,20 +241,9 @@ Some constants that affect editor behavior:
 * `Margin_top`, `Margin_left`, `Margin_right` are integers in pixel units that
   affect where the editor is drawn on window (it always extends to bottom of
   window as needed)
-* `Drawing_padding_top` and `Drawing_padding_bottom` affect spacing around
-  drawings.
 
 * Various color constants are represented as tables with r/g/b keys:
   * `Text_color`, `Cursor_color`, `Highlight_color` for drawing text.
-  * `Stroke_color`, `Current_stroke_color` for line drawings.
-  * `Icon_color` affects the color of the little mode icon on the top right of
-    a drawing.
-  * `Current_name_background_color` manages the color when naming points using
-    `ctrl+n`.
-  * `Focus_stroke_color` affects the color of a point or line when you hover
-    over it.
-  * `Help_color` and `Help_background_color` affect the color of online help
-    within line drawings.
 
 ### clickable buttons