summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDung Duc Huynh (Kaka) <870029+jellydn@users.noreply.github.com>2026-02-09 08:00:13 +0800
committerGitHub <noreply@github.com>2026-02-09 08:00:13 +0800
commit5efe8b9af39f21c27a35552cda4ffbfd67ec85e7 (patch)
tree8f249a5e56904a686808dc497d6b16414cd3d786 /README.md
parent7f35ae57c862fcf08b470165d8ff1759a10eb9b7 (diff)
parentd9dfb2336364fa0985137b56d8b13dc806fea7a7 (diff)
downloada4-5efe8b9af39f21c27a35552cda4ffbfd67ec85e7.tar.xz
a4-5efe8b9af39f21c27a35552cda4ffbfd67ec85e7.zip
Merge branch 'master' into feature/blink-cmp
Diffstat (limited to 'README.md')
-rw-r--r--README.md38
1 files changed, 11 insertions, 27 deletions
diff --git a/README.md b/README.md
index 878cba2..be623cf 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,14 @@
-# IF YOU ARE HERE FROM THE YT VIDEO
-
-a few things changed. completion is a bit different for skills. i now require `@` to begin with
+# IF YOU ARE HERE FROM [THE YT VIDEO](https://www.youtube.com/watch?v=ws9zR-UzwTE)
+a few things changed. completion is a bit different for skills. i now require `@` to begin with
... ill try to update as it happens ...
-### The Great Twitch Discussion
+# WARNING :: API CHANGES RIGHT NOW
+It will happen that apis will disapear or be changed. Sorry, this is an ALPHA product.
-I will conduct a stream on Jan 30 at 8am The Lords Time (Montana Time/Mountain Time (same thing))
-we will do an extensive deep dive on 99 and what we think is good and bad.
+# API
+* visual
+* search (upcoming, not ready yet)
+* debug (planned)
## The AI Agent That Neovim Deserves
@@ -89,10 +91,6 @@ I make the assumption you are using Lazy
},
})
- -- Create your own short cuts for the different types of actions
- vim.keymap.set("n", "<leader>9f", function()
- _99.fill_in_function()
- end)
-- take extra note that i have visual selection only in v mode
-- technically whatever your last visual selection is, will be used
-- so i have this set to visual mode so i dont screw up and use an
@@ -108,14 +106,6 @@ I make the assumption you are using Lazy
vim.keymap.set("v", "<leader>9s", function()
_99.stop_all_requests()
end)
-
- --- Example: Using rules + actions for custom behaviors
- --- Create a rule file like ~/.rules/debug.md that defines custom behavior.
- --- For instance, a "debug" rule could automatically add printf statements
- --- throughout a function to help debug its execution flow.
- vim.keymap.set("n", "<leader>9fd", function()
- _99.fill_in_function()
- end)
end,
},
```
@@ -182,14 +172,8 @@ Then the virtual text will be displayed one line below "function" instead of fir
- visual selection sends the whole file. there is likely a better way to use
treesitter to make the selection of the content being sent more sensible.
-- for both fill in function and visual there should be a better way to gather
- context. I think that treesitter + lsp could be really powerful. I am going
- to experiment with this more once i get access to the FIM models. This could
- make the time to completion less than a couple seconds, which would be
- incredible
-
-- every now and then the replacement seems to get jacked up and it screws up
- what i am currently editing.. I think it may have something to do with auto-complete
- - definitely not suure on this one
+* every now and then the replacement seems to get jacked up and it screws up
+what i am currently editing.. I think it may have something to do with auto-complete
+ * definitely not suure on this one
- export function ... sometimes gets export as well. I think the prompt could help prevent this