Releases: val-town/codemirror-codeium
Releases · val-town/codemirror-codeium
Support for non-secure contexts
Previously, this module used crypto.randomUUID()
to generate a session ID. That API is only available in secure contexts (HTTPS). This release adds a fallback so that the module works in non-secure contexts (http) too. Thanks @mscolnick for this fix!
Fix @bufbuild/protobuf dependency
The @bufbuild/protobuf
dependency was declared in devDependencies
but was used during runtime. It's now declared in dependencies
, which should fix usage with some bundlers.
Suggestion cycling
When Codeium suggests multiple alternative suggestions, this plugin now makes it possible to cycle through them with the Ctrl-]
shortcut.
CleanShot.2024-06-12.at.15.04.47.mp4
v0.3.0
Many basic improvements
- You can now accept suggestions by clicking on them
- Configure the api key, editor language, timeout
- Refactored code layout to make this easier to understand and contribute to
- Add python example to demo page