-
Re: Is there a relatively easy way to include a custom 'OnStart()' in every script I create?
The best you can do right now is to put that code into a script and #load it. You can create a shortcut to insert the #load via a snippet (right-click, Save as Snippet).1 · -
Re: Why do json dump looks cut off
I presume you're asking about outlining/folding? If so, this is now fixed in 9.9.2.1 · -
Re: How to add an image in the AI prompt?
Right now, the plan is for it to be at least loosely tied to the current tab in terms of editor integration, although it will be able to read files from anywhere in the filesystem (the same is true r…1 · -
Re: How to add an image in the AI prompt?
On a slight tangent, are you people open to using Claude Code? It's arguably the gold standard in coding agents and offers high-value plans (something that's no longer the case with GitHub …1 · -
Re: Expression string dump bug?
That's right - Dump() is a fluent method that returns the input. This lets you to inject Dump() into the middle of statements: new[] { 11, 5, 17, 7, 13 } .Dump ("Prime numbers") .Where…2 ·
