Compare commits

...

3 Commits

3 changed files with 5 additions and 4 deletions

View File

@ -138,16 +138,16 @@ end
function M.compile(file)
file = gf(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
keymap("<leader>dc", M.compile)
keymap("<leader>dc", M.compile, { silent = false })
function M.write_input(file)
-- store ad hoc test input from clipboard
file = gf(file)
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
function M.run_input(file)

View File

@ -97,5 +97,5 @@ return {
title: "{}",
stat: "{}",
)
]], { i(1), i(2), i(3, "incomplete") })),
]], { i(1), i(2), t("incomplete") })),
}

View File

@ -61,6 +61,7 @@ find ~/quar \
-name '*.mov' -o \
-name '*.MOV' -o \
-name '*.mp4' -o \
-name '*.MP4' -o \
-name '*.jpg' -o \
-name '*.png' -o \
-name '*.jpeg' -o \