This commit is contained in:
2026-02-15 21:35:09 +00:00
parent 847c71a194
commit 20d080e223
2 changed files with 4 additions and 2 deletions

View File

@@ -257,10 +257,12 @@ function M.apply(cwd)
end
last_applied = name
local setup = PROJECTS[name] or PROJECTS.default
local setup = PROJECTS[name]
if type(setup) == 'function' then
setup(dir)
vim.notify(('Project config loaded: %s'):format(name), vim.log.levels.INFO, { title = 'projects.lua' })
else
PROJECTS.default(dir)
end
end

View File

@@ -38,7 +38,7 @@ return {
)
),
bs(atr('t ', 'this'), fmta('this.#~', { i(0) })),
-- bs(atr('t ', 'this'), fmta('this.#~', { i(0) })),
s(etr('return ', 'Add semicolon after return'), fmta('return #~;', { i(0) })),
s(etr('rt ', 'return alias'), fmta('return #~;', { i(0) })),