Fix C+S+END/HOME
parent
4506e0d2cb
commit
5d7bff563a
|
@ -1,7 +1,5 @@
|
||||||
+ 0.85:
|
+ 0.85:
|
||||||
|
|
||||||
- when to call reset-modified
|
|
||||||
- C+S+END doesn't work
|
|
||||||
- pane output in UI should use less memory
|
- pane output in UI should use less memory
|
||||||
- signal 4 on datastack underflow on mac intel??
|
- signal 4 on datastack underflow on mac intel??
|
||||||
- faster I/O
|
- faster I/O
|
||||||
|
@ -34,6 +32,7 @@
|
||||||
- status help persists after clicking on a link
|
- status help persists after clicking on a link
|
||||||
- tool help
|
- tool help
|
||||||
- browser: show currently selected vocab & words
|
- browser: show currently selected vocab & words
|
||||||
|
- doc sweep
|
||||||
|
|
||||||
+ ui:
|
+ ui:
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ ARTICLE: "handbook" "Factor documentation"
|
||||||
{ "You can load source files with " { $link run-file } ":"
|
{ "You can load source files with " { $link run-file } ":"
|
||||||
{ $code "\"examples/lcd.factor\" run-file" } }
|
{ $code "\"examples/lcd.factor\" run-file" } }
|
||||||
{ { "You can load " { $snippet "contrib/" } " modules with " { $link require } ":" }
|
{ { "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 .s } " prints the contents of the stack." }
|
||||||
{ { $link . } " prints the object at the top of the stack." }
|
{ { $link . } " prints the object at the top of the stack." }
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,7 +122,7 @@ editor {
|
||||||
{ "Select next line" T{ key-down f { S+ C+ } "RIGHT" } [ T{ word-elt } editor-select-next ] }
|
{ "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 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 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 start of document" T{ key-down f { S+ C+ } "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 end of document" T{ key-down f { S+ C+ } "END" } [ T{ doc-elt } editor-select-next ] }
|
||||||
}
|
}
|
||||||
} define-commands
|
} define-commands
|
||||||
|
|
Loading…
Reference in New Issue