refactor(init): move convenience exports behind clearer public submodule boundaries #549
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#549
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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
lua/forge/init.luais much smaller than before, but it still exports helpers whose logical home is elsewhere. That keeps the public API flatter and less intention-revealing than it should be.Examples include formatting helpers and template-related helpers that are clearer behind explicit domain submodules than under the root
forgetable.Scope
Define and implement clearer public ownership for root-exported helpers by sharpening submodule facades such as:
forge.prforge.issueforge.repoforge.formatinit.luashould remain a thin public assembly layer, with compatibility shims only where needed.Non-goals
Dependency
This should follow the internal direct-import cleanup so the public surface decision is not entangled with internal ownership cleanup.