From ef23e13ac57cf6a8bcb04ccce10d2e5b34feec06 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 27 Sep 2013 21:12:05 -0400 Subject: Integrated compile and run commands for most languages. Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns. --- modules/lua/init.lua | 8 -------- 1 file changed, 8 deletions(-) (limited to 'modules/lua') diff --git a/modules/lua/init.lua b/modules/lua/init.lua index 286dbdf6..cb77e9d6 100644 --- a/modules/lua/init.lua +++ b/modules/lua/init.lua @@ -24,14 +24,6 @@ local M = {} -- from *`_USERHOME`/modules/lua/api*. module('_M.lua')]] --- Compile and Run command tables use file extensions. -textadept.run.compile_command.lua = 'luac %(filename)' -textadept.run.run_command.lua = 'lua %(filename)' -textadept.run.error_detail.lua = { - pattern = '^lua: (.-):(%d+): (.+)$', - filename = 1, line = 2, message = 3 -} - -- Adeptsense. M.sense = textadept.adeptsense.new('lua') -- cgit v1.2.3