diff options
author | 2016-04-29 08:17:46 -0400 | |
---|---|---|
committer | 2016-04-29 08:17:46 -0400 | |
commit | 5ae6162f19127c6909fe95f8de2695b04eeb9c32 (patch) | |
tree | f38611243f2ed494dc6d559fd559588f242b39c3 /modules/textadept/run.lua | |
parent | 3d6c4435d931d07ad5aaf7866a8791f5f0844612 (diff) | |
download | textadept-5ae6162f19127c6909fe95f8de2695b04eeb9c32.tar.gz textadept-5ae6162f19127c6909fe95f8de2695b04eeb9c32.zip |
Disabled `CHECK_SYNTAX` by default; modules/textadept/run.lua
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 6d673765..837de06a 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -19,7 +19,7 @@ local M = {} -- This applies only to languages that have syntax-checking commands and error -- message patterns defined in the `syntax_commands` and -- `syntax_error_patterns` tables, respectively. --- The default value is `true`. +-- The default value is `false`. -- @field GOTO_SYNTAX_ERRORS (bool) -- Immediately jump to recognized syntax errors after saving a source file. -- The default value is `true`. @@ -61,7 +61,7 @@ local M = {} module('textadept.run')]] M.RUN_IN_BACKGROUND = false -M.CHECK_SYNTAX = true +M.CHECK_SYNTAX = false M.GOTO_SYNTAX_ERRORS = true M.MARK_WARNING = _SCINTILLA.next_marker_number() |