diff options
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r-- | modules/textadept/adeptsense.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index fc1431c9..90cd952e 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -112,11 +112,12 @@ local M = {} -- ### Completion Lists -- -- Even though your Adeptsense now understands the basic syntax of your --- programming language, it is not smart enough to parse code to generate lists --- of function and field completions for classes. Instead, you must supply this --- information to your Adeptsense's [`completions`](#completions) table. The --- table contains string class names assigned to tables that themselves contain --- `functions` and `fields` completion tables. Here is the general form: +-- programming language, it is not smart enough to parse code in order to +-- generate lists of function and field completions for classes. Instead, you +-- must supply this information to your Adeptsense's +-- [`completions`](#completions) table. The table contains string class names +-- assigned to tables that themselves contain `functions` and `fields` +-- completion tables. Here is the general form: -- -- M.sense.completions = { -- ['class1'] = { |