Zachary Romero

Results 9 issues of Zachary Romero

To assist in writing code, a Flycheck integration could be written to show users any problems with their code as they write it.

enhancement

Currently when the parser fails, it returns an error message such as: `(error "Unable to parse YAML stream. Parser finished before end of input 0/65")` It would be much more...

enhancement

Mentioned in #12. These three variables would work very analogous to their JSON counterparts json-list-type, json-object-type, and json-key-type in that they would supply a default type for the parsing functions....

enhancement

Currently, tags (https://yaml.org/spec/1.2/spec.html#tag) are not used to give meaning to parsed data. That means that the following yaml ``` key: !!null "value" ``` would result in {"key" => "value"} and...

enhancement

Using tree-sitter, it would be useful to have a command to sort the keys in a map. So this would transfer the following document: ```yaml keys: ddd: 9 bbb: 2...

enhancement

fixes #14 Previously the doublestar token would match greedily as much as it could, so for example, the double star token of the pattern `**/*/file`, when applied to a directory...

Hi! I really like the new compose interface and find it helpful! I noticed a few edge cases when a prompt already exists: - If `chatgpt-shell-prompt-compose` is called with a...

Hello! I noticed that one of the methods for the providers is `llm-count-tokens` which currently does a simple heuristic. I recently wrote a [port of tiktoken](https://github.com/zkry/tiktoken.el) that could add this...