vindarel

Results 591 comments of vindarel

> # Projectile A few project-related commands were added :rocket: https://lem-project.github.io/lem-page/usage/usage/#find-file-in-project M-x project-find-file with auto-completion of a shrinking list, not far from Helm. M-x project-delete-buffers, project-directory C-x d (M-x filer)...

> treemacs There's `M-x filer` (`C-x d`) added after Lem 2.0, a project file viewer (not managing many projects). https://lem-project.github.io/lem-page/usage/usage/#filer (Sure it's simpler, the base is here) (edit) with the...

Thanks for the heads up ! Ok then I won't fiddle with Aserve, and might as well wait for you to release your current Qooxlisp before exploring anything with Hunchentoot...

Looks like the CI is broken: pip install . --use-mirrors => no such option: --use-mirrors on a previous build: > --use-mirrors has been deprecated and will be removed in the...

argh - https://github.com/thadeusb/flask-cache/issues/142 - new project: https://github.com/sh4nks/flask-caching

That's sad. For reference, here's a screenshot (where Lisp is at the top!): https://preview.redd.it/vn5juu36v2681.png?width=715&format=png&auto=webp&v=enabled&s=26ea1277170c63b4f17127785367f3b11f9076f1

Wow, I like the possibilities very much. code: - I personally am not a fan of `line-up-first`, which is the `->` arrow macro with a weird name (first time used...

Oh, I found the interactive command useful. I think it just needed one or two checks and "message"s more. (yes no need to pull an arrow macro dependency; maybe not...

Awesome. minor: - `str:empty?` is "deprecated", we prefer `emptyp`. - your utils could probably benefit to the Lem package. Maybe `buffer/file.lisp` is a good place, not sure.

I renamed the functions to `ensure-start`, `ensure-end`, `ensure-wrapped-in`, I added `wrapped-in-p`. I noticed a difference in a hedge case: ```lisp (str:starts-with-p nil "rst") NIL CL-USER> (str:wrapped-in-p nil "rst") "rst" ```...