fix
This commit is contained in:
@ -205,10 +205,10 @@ return {
|
|||||||
keys = function()
|
keys = function()
|
||||||
local function runCommandWithTarget(cmd)
|
local function runCommandWithTarget(cmd)
|
||||||
return function()
|
return function()
|
||||||
local targets = vim.fn["blaze#GetTargets"]()
|
local targets = table.concat(vim.fn["blaze#GetTargets"](), " ")
|
||||||
local bloooooo = "VimuxRunCommand('" .. cmd .. " " .. targets:gsub(":.+", "") .. "')"
|
local command = "VimuxRunCommand('" .. cmd .. " " .. targets .. "')"
|
||||||
print(vim.inspect(bloooooo))
|
print(vim.inspect(command))
|
||||||
vim.cmd(cmd)
|
vim.cmd(command)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return {
|
return {
|
||||||
|
Reference in New Issue
Block a user