diff options
author | 2013-07-08 16:09:29 -0400 | |
---|---|---|
committer | 2013-07-08 16:09:29 -0400 | |
commit | 6600c4f959bb4ea91a2f632bfc5375f7e75e40c4 (patch) | |
tree | 3c108fa22c3c6d6d32ea7beef55039bd845149d5 /modules/textadept/run.lua | |
parent | 7d1f21b44479d8b4484f8e27872eafd203b0e727 (diff) | |
download | textadept-6600c4f959bb4ea91a2f632bfc5375f7e75e40c4.tar.gz textadept-6600c4f959bb4ea91a2f632bfc5375f7e75e40c4.zip |
Renamed "language-specific" modules to just "language modules" in documentation.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index a5b1ce67..0e9913ed 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -5,11 +5,11 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Compile and run/execute source files with Textadept. --- Typically, [language-specific modules][] populate the `compile_command`, +-- Typically, [language modules][] populate the `compile_command`, -- `run_command`, and `error_detail` tables for a particular language's file -- extension. -- --- [language-specific modules]: _M.html#Compile.and.Run +-- [language modules]: _M.html#Compile.and.Run -- @field ERROR_COLOR (string) -- The name of the color in the current theme to mark a line containing a -- recognized run or compile error. @@ -123,9 +123,9 @@ end -- + `%(filename)`: The name of the file, including its extension. -- + `%(filename_noext)`: The name of the file, excluding its extension. -- --- This table is typically populated by [language-specific modules][]. +-- This table is typically populated by [language modules][]. -- --- [language-specific modules]: _M.html#Compile.and.Run +-- [language modules]: _M.html#Compile.and.Run -- @class table -- @name compile_command M.compile_command = {} @@ -150,9 +150,9 @@ events.connect(events.COMPILE_OUTPUT, print_output) -- + `%(filename)`: The name of the file, including its extension. -- + `%(filename_noext)`: The name of the file, excluding its extension. -- --- This table is typically populated by [language-specific modules][]. +-- This table is typically populated by [language modules][]. -- --- [language-specific modules]: _M.html#Compile.and.Run +-- [language modules]: _M.html#Compile.and.Run -- @class table -- @name run_command M.run_command = {} @@ -184,9 +184,9 @@ events.connect(events.RUN_OUTPUT, print_output) -- -- When an error message is double-clicked, the user is taken to the point of -- error. --- This table is usually populated by [language-specific modules][]. +-- This table is usually populated by [language modules][]. -- --- [language-specific modules]: _M.html#Compile.and.Run +-- [language modules]: _M.html#Compile.and.Run -- @class table -- @name error_detail M.error_detail = {} |