We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6757ee1 commit 2cfff79Copy full SHA for 2cfff79
lua/aoc/config.lua
@@ -16,6 +16,11 @@ local default_opts = {
16
17
M.init = function(args)
18
M.options = vim.tbl_deep_extend("force", default_opts, args or {})
19
+
20
+ M.options.session_filepath = vim.fn.expand(M.options.session_filepath)
21
+ if M.options.puzzle_input.alternative_filepath then
22
+ M.options.alternative_filepath = vim.fn.expand(M.options.alternative_filepath)
23
+ end
24
end
25
26
M.debug = function()
0 commit comments