Fix C+S+END/HOME

slava 2006-09-07 01:27:59 +00:00
parent 4506e0d2cb
commit 5d7bff563a
3 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,5 @@
+ 0.85:
- when to call reset-modified
- C+S+END doesn't work
- pane output in UI should use less memory
- signal 4 on datastack underflow on mac intel??
- faster I/O
@ -34,6 +32,7 @@
- status help persists after clicking on a link
- tool help
- browser: show currently selected vocab & words
- doc sweep
+ ui:

View File

@ -12,7 +12,7 @@ ARTICLE: "handbook" "Factor documentation"
{ "You can load source files with " { $link run-file } ":"
{ $code "\"examples/lcd.factor\" run-file" } }
{ { "You can load " { $snippet "contrib/" } " modules with " { $link require } ":" }
{ $code "\"httpd\" require" } }
{ $code "\"contrib/httpd\" require" } }
{ { $link .s } " prints the contents of the stack." }
{ { $link . } " prints the object at the top of the stack." }
}

View File

@ -122,7 +122,7 @@ editor {
{ "Select next line" T{ key-down f { S+ C+ } "RIGHT" } [ T{ word-elt } editor-select-next ] }
{ "Select to start of line" T{ key-down f { S+ } "HOME" } [ T{ one-line-elt } editor-select-prev ] }
{ "Select to end of line" T{ key-down f { S+ } "END" } [ T{ one-line-elt } editor-select-next ] }
{ "Select start of document" T{ key-down f { C+ S+ } "HOME" } [ T{ doc-elt } editor-select-prev ] }
{ "Select end of document" T{ key-down f { C+ S+ } "END" } [ T{ doc-elt } editor-select-next ] }
{ "Select start of document" T{ key-down f { S+ C+ } "HOME" } [ T{ doc-elt } editor-select-prev ] }
{ "Select end of document" T{ key-down f { S+ C+ } "END" } [ T{ doc-elt } editor-select-next ] }
}
} define-commands