diff options
| author | Dung Duc Huynh (Kaka) <870029+jellydn@users.noreply.github.com> | 2026-02-09 08:00:13 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-09 08:00:13 +0800 |
| commit | 5efe8b9af39f21c27a35552cda4ffbfd67ec85e7 (patch) | |
| tree | 8f249a5e56904a686808dc497d6b16414cd3d786 /README.md | |
| parent | 7f35ae57c862fcf08b470165d8ff1759a10eb9b7 (diff) | |
| parent | d9dfb2336364fa0985137b56d8b13dc806fea7a7 (diff) | |
| download | a4-5efe8b9af39f21c27a35552cda4ffbfd67ec85e7.tar.xz a4-5efe8b9af39f21c27a35552cda4ffbfd67ec85e7.zip | |
Merge branch 'master' into feature/blink-cmp
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 38 |
1 files changed, 11 insertions, 27 deletions
@@ -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 |
