feat(cmd): normalize Forge command dispatch #149
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
fugitive
good first issue
help wanted
invalid
question
v0.1.0
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/forge.nvim!149
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/canonical-forge-cmd"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
origin/mainis failing the LuaLS warning-level type check, and the current:Forgeentrypoint still relies on an ad hoc parser inplugin/forge.luathat duplicates parsing, validation, dispatch, and completion logic.Solution
Add a dedicated
forge.cmdmodule that owns the command schema, normalized parsing, strict bang validation, dispatch, and completion for the existing:Forgesurface. Reduceplugin/forge.luato command registration and plug setup, add parser and integration coverage, and make the default key tables explicit enough to satisfy the warning-level LuaLS CI check onmain.