aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-13 00:11:18 -0400
committermitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-13 00:11:18 -0400
commit75041aa1e1651841073473399397bcbfc10b0134 (patch)
tree965fe5833bbae19d9be87dcc5a2a2a159a418523 /init.lua
parent040625ef4426a6ffe0e057f1fbc3e91f1e9661de (diff)
downloadtextadept-75041aa1e1651841073473399397bcbfc10b0134.tar.gz
textadept-75041aa1e1651841073473399397bcbfc10b0134.zip
Switch back to Scintilla default (4.x), Scinterm, and Scintillua.
Scintilla LongTerm3 maintenance is ending with upcoming Scintilla 5. Textadept now requires a C++17 compiler. Also updated Docker image.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 134e7a39..8a282cc8 100644
--- a/init.lua
+++ b/init.lua
@@ -337,7 +337,6 @@ events.connect(events.BUFFER_NEW, function()
local SETDIRECTPOINTER = _SCINTILLA.properties.doc_pointer[2]
local SETLUASTATE = _SCINTILLA.functions.change_lexer_state[1]
local LOADLEXERLIBRARY = _SCINTILLA.functions.load_lexer_library[1]
- buffer.lexer_language = 'lpeg'
buffer:private_lexer_call(SETDIRECTFUNCTION, buffer.direct_function)
buffer:private_lexer_call(SETDIRECTPOINTER, buffer.direct_pointer)
buffer:private_lexer_call(SETLUASTATE, _LUA)