diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/._M.luadoc | 6 | ||||
-rw-r--r-- | core/keys.lua | 3 | ||||
-rw-r--r-- | core/lfs_ext.lua | 1 |
3 files changed, 5 insertions, 5 deletions
diff --git a/core/._M.luadoc b/core/._M.luadoc index 8633050b..18df50d9 100644 --- a/core/._M.luadoc +++ b/core/._M.luadoc @@ -20,8 +20,8 @@ -- -- To fully take advantage of Textadept's features, language modules should have -- at a minimum: run and/or compile commands, an event handler for setting --- buffer properties like indentation, and if possible, an Adeptsense. Optional --- features are extra snippets and commands and a context menu. +-- buffer properties like indentation, and if possible, an autocompleter. +-- Optional features are extra snippets and commands and a context menu. -- -- #### Compile and Run -- @@ -150,5 +150,5 @@ -- {'Autocomplete "end"', M.try_to_autocomplete_end} -- } -- --- [context menus]: textadept.menu.html#set_contextmenu +-- [context menus]: textadept.menu.html#context_menu module('_M')]] diff --git a/core/keys.lua b/core/keys.lua index 4eb301f4..4c84dbce 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -106,8 +106,7 @@ local M = {} -- @field CLEAR (string) -- The key that clears the current key chain. -- It cannot be part of a key chain. --- The default value is `'esc'` for the `Esc` (`⎋` on Mac OSX | `Esc` in --- curses) key. +-- The default value is `'esc'` for the `Esc` key. -- @field LANGUAGE_MODULE_PREFIX (string) -- The prefix key of the key chain reserved for language modules. -- The default value is `'cl'` on platforms other than Mac OSX, `'ml'` diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua index 25bbeb8d..a1d9c523 100644 --- a/core/lfs_ext.lua +++ b/core/lfs_ext.lua @@ -99,6 +99,7 @@ end -- *prefix* or `lfs.currentdir()` is prepended to a relative filename. The -- returned path is not guaranteed to exist. -- @param filename The relative or absolute path to a file. +-- @param prefix Optional prefix path prepended to a relative filename. -- @return string absolute path -- @name abspath function lfs.abspath(filename, prefix) |