diff options
author | 2013-04-26 14:16:04 -0400 | |
---|---|---|
committer | 2013-04-26 14:16:04 -0400 | |
commit | 7af4f16f84188cc49f51aafeb2b3ac42957f04bf (patch) | |
tree | dd3433b33a444ecb948c47ebbb433dc2d03cb356 /modules/textadept/run.lua | |
parent | c53d2b6565096b7e9f17c1846d890ecd9557960b (diff) | |
download | textadept-7af4f16f84188cc49f51aafeb2b3ac42957f04bf.tar.gz textadept-7af4f16f84188cc49f51aafeb2b3ac42957f04bf.zip |
Updated documentation; modules/textadept/run.lua
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 3ee9d5df..e5965fde 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -16,7 +16,7 @@ local M = {} -- @field cwd (string, Read-only) -- The working directory for the most recently executed compile or run -- command. --- It is used for error messages with relative file paths. +-- It is used for going to error messages with relative file paths. -- @field _G.events.COMPILE_OUTPUT (string) -- Emitted after executing a language's compile command. -- By default, compiler output is printed to the message buffer. To override @@ -195,8 +195,8 @@ M.error_detail = {} local function is_msg_buf(buf) return buf._type == _L['[Message Buffer]'] end --- -- Goes to the source of the recognized compile/run error on line number *line* --- in the message buffer, or if `nil`, the next or previous recognized error --- depending on boolean *next*. +-- in the message buffer or the next or previous recognized error depending on +-- boolean *next*. -- Displays an annotation with the error message, if available. -- @param line The line number in the message buffer that contains the -- compile/run error to go to. |