vindarel
vindarel
A wrapper around the `lftp` program, so a SFTP client for Common Lisp. Brings facilities to create a command and get a user profile from environment variables or configuration files....
A small library to help build a paginated list of buttons in HTML. Includes a ready-to-use Djula template with Bulma CSS. - https://github.com/cosmoframework/cosmo-pagination 
from lisp-stat: > Not only does Common Lisp provide a compiler that produces machine code, it has native threading, a rich ecosystem of code libraries, and a history of industrial...
https://github.com/fukamachi/sxql/blob/master/COMPOSER.md and also `mito:joins` https://github.com/fukamachi/mito/pull/178
``` huh the cookbook says ~T prints a tab but it definitely doesn't on SBCL at least. i always had to do something like (format out "one~Ctwo~Cthree~&" #\Tab #\Tab) to...
see on Discord, adding for search facility: (I am not having the issue) --- did anybody get this message after executing webview build? Gdk-Message: 00:02:43.190: Error 71 (Protocol error) dispatching...
in prompt-window.lisp, `trace` `prompt-start-point`, then call M-x and I have an issue: "floating-prompt cannot be printed readably" (there is a call to `micros/trace:micros-trace`). In the REPL, `(untrace)` doesn't untrace functions....
Write a tutorial that will be available in Lem, under the `Alt-x tutorial` command. It should teach the basics and refer to the rest of the documentation. It should be...
WIP The fuzzy-match algorithm has good results (see tests, not yet ported, in https://github.com/vindarel/fuzzy-match), ```lisp (lem/fuzzy-match:fuzzy-match "proj ws" (list of completion items) :key #'lem/completion-mode:completion-item-labe) ;; => "project-switch" item ``` the...
Entering something like this: (format t "~s" '(hello some test arithmetic)) is printed like ``` (HELLO SOME TEST etc ``` I found it's because of `syntax-hl`, then I do this...