aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/06_AdeptEditing.md
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2014-05-24 12:09:44 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2014-05-24 12:09:44 -0400
commit68147393527efc2364e821a3979d853aac0e5940 (patch)
treeb480658fc9ed2b9cec09564c6e44457fceff8dc3 /doc/06_AdeptEditing.md
parent0e201469a0913267011ce59ff12eb46c3be56a2f (diff)
Removed Adeptsense in favor of new framework committed in r1735.
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
Diffstat (limited to 'doc/06_AdeptEditing.md')
-rw-r--r--doc/06_AdeptEditing.md22
1 files changed, 12 insertions, 10 deletions
diff --git a/doc/06_AdeptEditing.md b/doc/06_AdeptEditing.md
index 65cb750d..51c3115b 100644
--- a/doc/06_AdeptEditing.md
+++ b/doc/06_AdeptEditing.md
@@ -246,25 +246,27 @@ curses). This feature also works for plain text.
![Word Highlight](images/wordhighlight.png)
-### Adeptsense
+### Autocompletion and Documentation
Textadept has the capability to autocomplete symbols for programming languages
and display API documentation. Pressing `Ctrl+Space` (`⌥⎋` on Mac OSX | `^Space`
in curses) completes the current symbol and `Ctrl+H` (`^H` | `M-H` or `M-S-H`)
-shows any known documentation on the current symbol. Note: In order for this
-feature to work, the language you are working with must have an [Adeptsense][]
-defined. [Language modules][] usually [define Adeptsenses][]. All of the
-[official][] Textadept language modules have Adeptsenses.
+shows any known documentation on the current symbol. Note: In order for these
+features to work, the language you are working with must have an
+[autocompleter][] and [API file(s)][], respectively. [Language modules][]
+usually [define these][]. Most of the [official][] Textadept language modules
+support autocompletion and documentation.
-![Adeptsense Lua](images/adeptsense_lua.png)
+![Autocomplete Lua](images/adeptsense_lua.png)
&nbsp;&nbsp;&nbsp;&nbsp;
-![Adeptsense Lua String](images/adeptsense_string.png)
+![Autocomplete Lua String](images/adeptsense_string.png)
-![Adeptsense Doc](images/adeptsense_doc.png)
+![Documentation](images/adeptsense_doc.png)
[Language modules]: 07_Modules.html#Language.Modules
-[Adeptsense]: api/textadept.adeptsense.html
-[define Adeptsenses]: api/_M.html#Adeptsense
+[autocompleter]: api/textadept.editing.html#autocompleters
+[API file(s)]: api/textadept.editing.html#api_files
+[define these]: api/_M.html#Autocompletion.and.Documentation
[official]: http://foicica.com/hg
### Snippets