chris

Results 11 comments of chris

Thank you for this information, it clarifies a lot of things to me. I'll see if I can find the time to make a better patch. Until then, I am...

If that's a useful I can extend this behavior to other functions that currently expect string designators.

The name for `substring` I had in mind would be `slice`. I was thinking more generally about all the places that accept an index. It changes not what functions do,...

Also, this could be subject to another configuration variable: (1) this would avoid having breaking changes, and (2) the suggested `index` computation above is not necessarily what most people expect...

For context, I am starting to collect some of my utility functions to package them as small libraries (starting with https://github.com/christophejunke/tilde-slash), and I'd prefer to reuse or extend cl-str instead...

> Is the intent here to be able to write to the repl buffer only or to other buffers as well? other buffers as well, if possible; there should b...

Usage example for completeness: ```lisp CL-USER> (use-package :yaml.parser.extensions) T CL-USER> (defstruct (tag (:constructor make-tag (name value))) name value) TAG CL-USER> (let ((*yaml-tag-converter* #'make-tag)) (yaml:parse "!id 123456")) #S(TAG :NAME "!id" :VALUE...

I can manage to find some time each month to maintain it if you want. How does xach/quicklisp know which version to take? is it the master branch? Is there...