Cameron DaCamara
Cameron DaCamara
### Reproducible in vscode.dev or in VS Code Desktop? - [X] Not reproducible in [vscode.dev](https://vscode.dev) or VS Code Desktop ### Reproducible in the monaco editor playground? - [ ] Not...
This implements a fuzzy text search similar to that of Sublime or VSCode when searching for files in the file browser. This implementation is based on the article: https://www.forrestthewoods.com/blog/reverse_engineering_sublime_texts_fuzzy_match. This...
I have been using the tree-sitter C API and, while it is great and pretty easy to use, it seems to lack some notes on APIs that would be very...
## Description In one of our repos, we had a CodeQL warning flag the doctest header here: https://github.com/doctest/doctest/blob/ae7a13539fb71f270b87eb2e874fbac80bc8dda2/doctest/doctest.h#L3700-L3705 Where the pointer is deleted then used.
### Did you check existing issues? - [X] I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser - [X] I have searched the existing issues...
Prior to this change a character class such as `[0-1]` was parsed as: ``` (character_class) ([) (character_class) (character_class) (character_class) (]) ``` So the range was completely dropped. This happened for...
Revisit this one the IFC has a better representation for the syntactic extern on function declarations vs compiler-generated/implicit external-linkage. e.g. ```c++ extern void f(); void g(); ``` On MSVC, both...