Rewrite of the custom functions to better load with the newer modular configs.
This commit is contained in:
parent
95a58ffb1f
commit
b11ee41a48
@ -1,31 +1,32 @@
|
||||
-- 'softrequire' provides a wrapper around the builtin require. If the require has failed in a `local mod = softrequire('m') call, a quick check of
|
||||
-- 'if mod then' can wrap code dependent upon the require, and fails gracefully
|
||||
local function softrequire(m)
|
||||
local ok, err = pcall(require, m)
|
||||
if not ok then return nil, err end
|
||||
return err
|
||||
end
|
||||
-- local function softrequire(m)
|
||||
-- local ok, err = pcall(require, m)
|
||||
-- if not ok then return nil, err end
|
||||
-- return err
|
||||
-- end
|
||||
|
||||
local function execute(type)
|
||||
local command_table = {
|
||||
run = {
|
||||
java = 'java %',
|
||||
python = 'python %',
|
||||
rust = 'cargo run',
|
||||
},
|
||||
test = {
|
||||
python = 'python test',
|
||||
rust = 'cargo test',
|
||||
},
|
||||
benchmark = {
|
||||
rust = 'cargo bench',
|
||||
},
|
||||
}
|
||||
vim.api.nvim_command('write')
|
||||
local command = command_table[type][vim.bo.filetype]
|
||||
return {
|
||||
execute = function(type)
|
||||
local command_table = {
|
||||
run = {
|
||||
java = 'java %',
|
||||
python = 'python %',
|
||||
rust = 'cargo run',
|
||||
},
|
||||
test = {
|
||||
python = 'python test',
|
||||
rust = 'cargo test',
|
||||
},
|
||||
benchmark = {
|
||||
rust = 'cargo bench',
|
||||
},
|
||||
}
|
||||
vim.api.nvim_command('write')
|
||||
local command = command_table[type][vim.bo.filetype]
|
||||
|
||||
if command ~= nil then
|
||||
vim.cmd('FloatermNew --autoclose=0 ' .. command)
|
||||
if command ~= nil then
|
||||
vim.cmd('FloatermNew --autoclose=0 ' .. command)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user