mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-14 01:50:27 +00:00
fix(logging): Some logging and better initial values
This commit is contained in:
parent
a6050f3e52
commit
92cc92b8e1
@ -34,17 +34,21 @@ function ensure_correct_config(config)
|
|||||||
local projects = config.projects
|
local projects = config.projects
|
||||||
if projects[cwd] == nil then
|
if projects[cwd] == nil then
|
||||||
projects[cwd] = {
|
projects[cwd] = {
|
||||||
marks = {},
|
mark = {
|
||||||
term = {},
|
marks = {}
|
||||||
|
},
|
||||||
|
term = {
|
||||||
|
cmds = {}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
if projects[cwd].marks == nil then
|
if projects[cwd].marks == nil then
|
||||||
projects[cwd].marks = {}
|
projects[cwd].mark = {marks = {}}
|
||||||
end
|
end
|
||||||
|
|
||||||
if projects[cwd].term == nil then
|
if projects[cwd].term == nil then
|
||||||
projects[cwd].term = {}
|
projects[cwd].term = {cmds = {}}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -110,5 +114,13 @@ M.setup = function(config)
|
|||||||
harpoon_config = complete_config
|
harpoon_config = complete_config
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- should only be called for debug purposes
|
||||||
|
M.print_config = function()
|
||||||
|
print(vim.inspect(harpoon_config))
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Sets a default config with no values
|
||||||
|
M.setup({projects = {}})
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
augroup THE_PRIMEAGEN_HARPOON
|
|
||||||
autocmd!
|
|
||||||
autocmd VimLeave * :lua require('harpoon').save()
|
|
||||||
autocmd BufLeave * :lua require('harpoon.mark').store_offset()
|
|
||||||
augroup END
|
|
@ -1,5 +1,5 @@
|
|||||||
augroup THE_PRIMEAGEN_HARPOON
|
augroup THE_PRIMEAGEN_HARPOON
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd VimLeave * :lua require('harpoon').save()
|
autocmd VimLeavePre * :lua require('harpoon').save()
|
||||||
autocmd BufLeave * :lua require('harpoon.mark').store_offset()
|
autocmd BufLeave * :lua require('harpoon.mark').store_offset()
|
||||||
augroup END
|
augroup END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user