diff options
author | 2019-09-22 19:15:04 -0400 | |
---|---|---|
committer | 2019-09-22 19:15:04 -0400 | |
commit | 8d691eedfb6c62c231fc95d1be786de6cc945cb7 (patch) | |
tree | 5aa4f0a77c403dad129b6ef7fcf4b0cbd6cf33a1 /doc/manual.md | |
parent | f7cfaf74fb0170bc65671c493bccd49b11835256 (diff) | |
download | textadept-8d691eedfb6c62c231fc95d1be786de6cc945cb7.tar.gz textadept-8d691eedfb6c62c231fc95d1be786de6cc945cb7.zip |
Replaced `ui.command_entry.*_mode()` with simplified `ui.command_entry.run()`.
The command entry no longer uses named key modes. Instead, mode keys are
supplied to `run()` if necessary. The command entry remains modal, though.
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/manual.md b/doc/manual.md index d49f2b1e..3b757b70 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1363,12 +1363,9 @@ available completions. Use the arrow keys to make a selection and press `Enter` Executing Lua commands is just one of the many "modes" the command entry has. The [command entry API documentation][] has more information on modes and how to -create new ones. As an example, *modules/textadept/keys.lua* defines a new mode -that works in conjunction with *modules/textadept/find.lua* in order to provide -[incremental search][]. +create new ones. [command entry API documentation]: api.html#ui.command_entry -[incremental search]: api.html#ui.find.find_incremental ## Command Selection |