aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2009-10-27 15:55:58 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2009-10-27 15:55:58 -0400
commitcc9028fbf9b082252615595dae5580c7cb38c952 (patch)
tree59957440d451e3fd61a9d824d20d91e8ddde8b79 /modules
parentbf39948dac59eca478e853f1173d02d408e48520 (diff)
Fixed bug for running filename with no path; modules/textadept/run.lua
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/run.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index fcdb6a43..2b334fd1 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -17,7 +17,12 @@ module('_m.textadept.run', package.seeall)
-- * %(filename_noext) The name of the file excluding extension.
function execute(command)
local filepath = textadept.iconv(buffer.filename, _CHARSET, 'UTF-8')
- local filedir, filename = filepath:match('^(.+[/\\])([^/\\]+)$')
+ local filedir, filename
+ if filepath:find('[/\\]') then
+ filedir, filename = filepath:match('^(.+[/\\])([^/\\]+)$')
+ else
+ filedir, filename = '', filepath
+ end
local filename_noext = filename:match('^(.+)%.')
command = command:gsub('%%%b()', {
['%(filepath)'] = filepath,