Brice

Results 277 comments of Brice

Looks like after the update to the LSP is published, it still doesn't show up in a search for `@category:"debuggers" clarity`... 🤔

It might be this: ```diff @@ -27,7 +27,8 @@ }, "qna": "https://clarity-lang.org/", "categories": [ - "Programming Languages" + "Programming Languages", + "Debuggers" ], "engines": { "vscode": "^1.43.0" ``` @hugocaillard, if...

rustyline makes use of this [`Helper` trait](https://docs.rs/rustyline/5.0.1/rustyline/trait.Helper.html) to provide completion, suggestion, and highlighting.

Thanks for pointing that out @LNow. I had not noticed this, but I agree, that is **very** annoying and it shouldn't be hard to change. I'll fix this with high...

The fix is not as simple as I assumed, but I will still keep it high priority. Also, looking at this caused me to catch a crash in the last...

Let's review Cargo.toml handling. Another option is to only append to this file.

This is still a problem, though the command is now `::list_functions`.

@dryhumour11, can you try posting that image again? It didn't seem to work properly.

- [ ] I should also add unit tests for this before merging

Brainstorming syntax to annotate when a specific argument does not need to be checked: ``` (define-public (send-to-contract (amount uint)) ;; #[allow-unchecked(amount)] (stx-transfer? amount tx-sender (as-contract tx-sender)) ) ``` Above, `amount`...