Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d37cb9a
chore: update readme
olisikh Feb 18, 2026
4746ba9
chore: update docs/Patterns.md
olisikh Feb 18, 2026
f6b5206
chore: update README
olisikh Feb 18, 2026
c5b9341
feat: add Neovim help doc and rename docs to wiki
olisikh Feb 18, 2026
0a41d09
Merge remote-tracking branch 'origin/main' into chore/readme_update
olisikh Feb 18, 2026
22e9528
fix: wiki sync
olisikh Feb 18, 2026
38dbed2
fix: wiki sync
olisikh Feb 18, 2026
fd7a5b7
fix: add missing test targets for cats-effect and cats libraries
olisikh Feb 18, 2026
c88b6f9
docs: update Contributing.md with new Makefile test targets
olisikh Feb 18, 2026
38245f9
chore: remove misleading test-engine target from Makefile
olisikh Feb 18, 2026
9bc9bb5
feat: add wiki sidebar for custom page ordering
olisikh Feb 18, 2026
a3a45c1
Merge remote-tracking branch 'origin/main' into chore/readme_update
olisikh Feb 18, 2026
99f4916
chore: remove redundant Home.md wiki page
olisikh Feb 18, 2026
b873b37
feat: add concise Home.md as wiki index page
olisikh Feb 18, 2026
f618f20
docs: reorganize wiki with prefixed filenames for proper ordering
olisikh Feb 19, 2026
0f9d791
chore: add demo video
olisikh Feb 19, 2026
acf24ef
docs: add demo video to README
olisikh Feb 19, 2026
fba51ac
chore: convert demo video to mp4 for better compatibility
olisikh Feb 19, 2026
968525b
chore: rename wiki pages for ordering
olisikh Feb 19, 2026
54e9a57
fix: update wiki links for renamed pages with number prefixes
olisikh Feb 19, 2026
6705134
chore: convert demo video to gif for GitHub README compatibility
olisikh Feb 19, 2026
030c0d7
docs: remove demo.mp4
olisikh Feb 19, 2026
5c5ceb4
chore: update demo video with better recording
olisikh Feb 19, 2026
7a8faa1
fix: correct wiki internal links to use hyphens (GitHub replaces spac…
olisikh Feb 19, 2026
ca20fd4
fix: correct wiki link syntax - display text comes before page name
olisikh Feb 19, 2026
4cd5c01
merge: resolve conflicts with origin/main, keep correct wiki link syntax
olisikh Feb 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions wiki/2. Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ diagnostics = {

### Finding Pattern Names

See [[3.-Patterns|Patterns]] for the complete pattern catalog. Pattern names are also visible in:
See [[Patterns|3.-Patterns]] for the complete pattern catalog. Pattern names are also visible in:

1. Diagnostic messages (hover over the diagnostic)
2. Code action titles (when applying fixes)
Expand Down Expand Up @@ -418,5 +418,5 @@ require('scala-hints').setup({

## Related Pages

- [[1.-Installation|Installation]] — Setup and installation instructions
- [[3.-Patterns|Patterns]] — Complete pattern catalog
- [[Installation|1.-Installation]] — Setup and installation instructions
- [[Patterns|3.-Patterns]] — Complete pattern catalog
4 changes: 2 additions & 2 deletions wiki/4. ZIO.md
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ object MainApp extends ZIOAppDefault:

## See Also

- [[5.-Cats-Effect|Cats-Effect Patterns]]
- [[6.-Cats-Tagless-Final|Cats Tagless-Final Patterns]]
- [[Cats-Effect Patterns|5.-Cats-Effect]]
- [[Cats Tagless-Final Patterns|6.-Cats-Tagless-Final]]
- [ZIO Documentation](https://zio.dev/)
- [ZIO Type Aliases](https://zio.dev/reference/core/zio/zio-type-aliases)
- [IntelliJ ZIO Plugin](https://github.com/zio/zio-intellij)
4 changes: 2 additions & 2 deletions wiki/5. Cats-Effect.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,8 @@ object Database:

## See Also

- [[4.-ZIO|ZIO Patterns]]
- [[6.-Cats-Tagless-Final|Cats Tagless-Final Patterns]]
- [[ZIO Patterns|4.-ZIO]]
- [[Cats Tagless-Final Patterns|6.-Cats-Tagless-Final]]
- [Cats-Effect Documentation](https://typelevel.org/cats-effect/)
- [Cats-Effect IO](https://typelevel.org/cats-effect/docs/std/io)
- [Cats-Effect Resource](https://typelevel.org/cats-effect/docs/std/resource)
2 changes: 1 addition & 1 deletion wiki/6. Cats-Tagless-Final.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ object ZIOUserService {

## See Also

- [[3.-Patterns|Patterns]] — ZIO and Cats-Effect pattern documentation
- [[Patterns|3.-Patterns]] — ZIO and Cats-Effect pattern documentation
- [AGENTS.md](../AGENTS.md) — Full architecture and pattern catalog
- [Cats Documentation](https://typelevel.org/cats/)
- [Tagless Final Pattern](https://typelevel.org/cats/guidelines/tagless-final.html)
12 changes: 6 additions & 6 deletions wiki/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Welcome to the scala-hints.nvim documentation.

## Quick Links

- [[1.-Installation|Installation]] — Setup with lazy.nvim, packer, or manual
- [[2.-Configuration|Configuration]] — All options and per-pattern customization
- [[3.-Patterns|Patterns]] — Complete pattern catalog (90 patterns)
- [[4.-ZIO|ZIO]] — ZIO 2.x patterns (35 patterns)
- [[5.-Cats-Effect|Cats-Effect]] — IO/Resource patterns (40 patterns)
- [[6.-Cats-Tagless-Final|Cats-Tagless-Final]] — Evidence-gated F[_] patterns (15 patterns)
- [[Installation|1.-Installation]] — Setup with lazy.nvim, packer, or manual
- [[Configuration|2.-Configuration]] — All options and per-pattern customization
- [[Patterns|3.-Patterns]] — Complete pattern catalog (90 patterns)
- [[ZIO|4.-ZIO]] — ZIO 2.x patterns (35 patterns)
- [[Cats-Effect|5.-Cats-Effect]] — IO/Resource patterns (40 patterns)
- [[Cats-Tagless-Final|6.-Cats-Tagless-Final]] — Evidence-gated F[_] patterns (15 patterns)
- [[Contributing]] — How to add new patterns

## What This Plugin Does
Expand Down