aboutsummaryrefslogtreecommitdiff
path: root/core/.command_entry.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:55:39 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:55:39 -0500
commitc7b543e79b41d9a983cc89e264acd0472d09dc92 (patch)
tree9b28b836f65b396ea160ba91048fb030018ccdcc /core/.command_entry.luadoc
parent6c1afd75fc048e65cef5bfdbe68c79a082bdad43 (diff)
downloadtextadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.tar.gz
textadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.zip
New manual.
Diffstat (limited to 'core/.command_entry.luadoc')
-rw-r--r--core/.command_entry.luadoc27
1 files changed, 0 insertions, 27 deletions
diff --git a/core/.command_entry.luadoc b/core/.command_entry.luadoc
index e474fa13..377fa0a8 100644
--- a/core/.command_entry.luadoc
+++ b/core/.command_entry.luadoc
@@ -11,33 +11,6 @@ module('gui.command_entry')
--
-- * `entry_text`: The text in the entry.
--
--- ## Overview
---
--- Access to the Lua state is available through this command entry. It is useful
--- for debugging, inspecting, and entering buffer or view commands. If you try
--- cause instability in Textadept's Lua state, you might very well succeed. Be
--- careful.
---
--- Tab-completion for functions, variables, tables, etc. is available. Press the
--- `Tab` key to display a list of available completions. Use the arrow keys to
--- make a selection and press `Enter` to insert it.
---
--- Abbreviated commands for the `buffer`, `view` and `gui` are available. So
--- `buffer:append_text('textadept')` can be shortened to
--- `append_text('textadept')`. Please note `print()` calls
--- [`gui.print()`][gui_print] and not Lua's `print()`. The latter can be
--- accessed with `_G.print()`.
---
--- [gui_print]: ../modules/gui.html#print
---
--- ## Extending
---
--- You can extend the command entry to do more than enter Lua commands. An
--- example of this is [incremental search][inc_search]. See
--- `modules/textadept/find.lua` for the implementation.
---
--- [inc_search]: ../modules/gui.find.html#incremental
---
-- ## Events
--
-- The following is a list of all command entry events generated in