summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-15 13:32:13 -0700
committerThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-15 13:32:13 -0700
commit812e61c324c5259219a42c98184ffca3397c2790 (patch)
tree816f9e4b13c808db35798333e2f35f66ecea3909 /README.md
parentdac9c6980c0a5d2f4238b1aa4810fd1956ad4dd0 (diff)
downloada4-812e61c324c5259219a42c98184ffca3397c2790.tar.xz
a4-812e61c324c5259219a42c98184ffca3397c2790.zip
crazy idea is "complete" but not battle tested
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2d4e0eb..b30c623 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,22 @@ I make the assumption you are using Lazy
print_on_error = true,
},
+ --- A new feature that is centered around tags
+ completion = {
+ --- Defaults to .cursor/rules
+ cursor_rules = "<custom path to cursor rules>"
+
+ --- A list of folders where you have your own agents
+ custom_rules = {
+ "scratch/custom_rules/",
+ },
+
+ --- What autocomplete do you use. We currently only
+ --- support cmp right now
+ source = "cmp",
+
+ }
+
--- WARNING: if you change cwd then this is likely broken
--- ill likely fix this in a later change
---
@@ -64,6 +80,14 @@ I make the assumption you are using Lazy
vim.keymap.set("v", "<leader>9s", function()
_99.stop_all_requests()
end)
+
+ --- a example using rules + action to produce a real exciting effect
+ --- ~/.rules/debug.md imagine that this is a behavior that adds in
+ --- the behavior where printf is what you want to debug and will
+ --- attempt to printf the functions contents for debugging
+ vim.keymap.set("n", "<leader>9fd", function()
+ _99.stop_all_requests()
+ end)
end,
},
```