aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform
AgeCommit message (Collapse)Author
2023-08-28refactor!: remove ability for formatter list to disable autoformatSteven Arcangeli
I realized that there are so, so many possible features people would want when configuring the autoformatter, but it's better to just code it up yourself rather than try to create a config language that can describe all possible logic. Also adding new docs to provide examples of more advanced autoformat logic.
2023-08-28fix: don't show 'no formatters' warning if none configuredSteven Arcangeli
2023-08-28feat: can silence notification when running formatters (#7)Steven Arcangeli
2023-08-28fix: remove unnecessary notifySteven Arcangeli
2023-08-27fix: keep window position stable when LSP formattingSteven Arcangeli
2023-08-27lint: fix type annotationsSteven Arcangeli
2023-08-27doc: flesh out config options documentationSteven Arcangeli
2023-08-27fix: no need to save/restore window viewSteven Arcangeli
Since we're applying diffs instead of replacing the entire buffer, the cursor actually stays in a more predictable location if we _don't_ try to save & restore the window views.
2023-08-27test: add a test suiteSteven Arcangeli
2023-08-27feat: new formatter: fish_indent (#5)Mahan
* feat: add fish_indent * feat: update readme to add fish_indent
2023-08-26fix: gracefully handle another timeout caseSteven Arcangeli
2023-08-25fix: ensure real buffer numbers get loggedSteven Arcangeli
2023-08-25fix: don't modify files when no styling changesSteven Arcangeli
2023-08-25fix: set a cwd for styluaSteven Arcangeli
2023-08-25fix: notification when no formatters availableSteven Arcangeli
2023-08-25feat: first working versionSteven Arcangeli