aboutsummaryrefslogtreecommitdiff
path: root/doc/08_Preferences.md
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2014-05-24 12:09:44 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2014-05-24 12:09:44 -0400
commit68147393527efc2364e821a3979d853aac0e5940 (patch)
treeb480658fc9ed2b9cec09564c6e44457fceff8dc3 /doc/08_Preferences.md
parent0e201469a0913267011ce59ff12eb46c3be56a2f (diff)
downloadtextadept-68147393527efc2364e821a3979d853aac0e5940.tar.gz
textadept-68147393527efc2364e821a3979d853aac0e5940.zip
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/08_Preferences.md')
-rw-r--r--doc/08_Preferences.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/08_Preferences.md b/doc/08_Preferences.md
index efcd1fb5..80fe37ed 100644
--- a/doc/08_Preferences.md
+++ b/doc/08_Preferences.md
@@ -80,19 +80,18 @@ tabs, simply put the event handler in *~/.textadept/modules/lua/post_init.lua*:
end)
Similarly, use *post_init.lua* to change the module's [compile and run][]
-commands, load more [Adeptsense tags][], and add additional
+commands, load more Autocompletion tags, and add additional
[key bindings](#Key.Bindings) and [snippets](#Snippets) (instead of in
*~/.textadept/init.lua*). For example:
textadept.run.run_commands.lua = 'lua5.2'
- _M.lua.sense:load_ctags('/path/to/my/projects/tags')
+ _M.lua.tags[#_M.lua.tags + 1] = '/path/to/my/projects/tags'
keys.lua['c\n'] = function()
buffer:line_end() buffer:add_text('end') buffer:new_line()
end
snippets.lua['ver'] = '%<_VERSION>'
[compile and run]: 07_Modules.html#Compile.and.Run
-[Adeptsense tags]: api/textadept.adeptsense.html#load_ctags
### Loading Modules
@@ -174,10 +173,10 @@ spaces by default, your *~/.textadept/properties.lua* would contain:
Textadept's *properties.lua* is a good "quick reference" for configurable
properties. It also has many commented out properties that you can copy to your
*~/.textadept/properties.lua* and uncomment to turn on or change the value of.
-Use [Adeptsense][] to view a property's documentation or read the [LuaDoc][].
+You can view a property's documentation by pressing `Ctrl+H` (`^H` on Mac OSX |
+`M-H` or `M-S-H` in curses) or by reading the [LuaDoc][].
[language module]: 07_Modules.html#Buffer.Properties
-[Adeptsense]: 06_AdeptEditing.html#Adeptsense
[LuaDoc]: api/buffer.html
## Locale