aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2014-05-28 22:40:49 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2014-05-28 22:40:49 -0400
commit4c4377908efc3e634f01b4dbd3d22bd03aff2454 (patch)
treeb7b7a8a4e014449b4390beea5511d7bba766b736 /core
parent016a786eddabc2060dc52a75a8db7b77d737116c (diff)
downloadtextadept-4c4377908efc3e634f01b4dbd3d22bd03aff2454.tar.gz
textadept-4c4377908efc3e634f01b4dbd3d22bd03aff2454.zip
Updated LuaDoc.
Diffstat (limited to 'core')
-rw-r--r--core/._M.luadoc6
-rw-r--r--core/keys.lua3
-rw-r--r--core/lfs_ext.lua1
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)