aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-04-29 08:17:46 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-04-29 08:17:46 -0400
commit5ae6162f19127c6909fe95f8de2695b04eeb9c32 (patch)
treef38611243f2ed494dc6d559fd559588f242b39c3
parent3d6c4435d931d07ad5aaf7866a8791f5f0844612 (diff)
Disabled `CHECK_SYNTAX` by default; modules/textadept/run.lua
-rw-r--r--modules/textadept/run.lua4
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()