nvim: compilation has output now
This commit is contained in:
parent
59a66f8d5d
commit
dfe58a4da8
@ -138,16 +138,16 @@ end
|
|||||||
function M.compile(file)
|
function M.compile(file)
|
||||||
file = gf(file)
|
file = gf(file)
|
||||||
local subdir = M.dbg_dir(file)
|
local subdir = M.dbg_dir(file)
|
||||||
vim.fn.execute("make " .. subdir .. "/binary " .. "-f $XDG_CONFIG_HOME/nvim/makefile")
|
vim.cmd.make(subdir .. "/binary " .. "-f $XDG_CONFIG_HOME/nvim/makefile")
|
||||||
end
|
end
|
||||||
|
|
||||||
keymap("<leader>dc", M.compile)
|
keymap("<leader>dc", M.compile, { silent = false })
|
||||||
|
|
||||||
function M.write_input(file)
|
function M.write_input(file)
|
||||||
-- store ad hoc test input from clipboard
|
-- store ad hoc test input from clipboard
|
||||||
file = gf(file)
|
file = gf(file)
|
||||||
local inp_file = M.dbg_dir(file) .. "/input"
|
local inp_file = M.dbg_dir(file) .. "/input"
|
||||||
vim.fn.writefile(vim.fn.getreg("+", 1, 1), inp_file)
|
print(vim.fn.writefile(vim.fn.getreg("+", 1, 1), inp_file))
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.run_input(file)
|
function M.run_input(file)
|
||||||
|
Loading…
Reference in New Issue
Block a user