Post #2659759
2026-05-15 01:05 UTC
@chiply@fosstodon.org Thanks, you kind of activated the ICR idea in my brain so now I am seeing it apply everywhere. CLIM and the clim spec ship with an interactor-pane which I guess is somewhere on the radar of a command shell and the minibuffer. But it includes very strong opinions on what is going to happen on keypresses and I wanted to be explicit about what *I* wanted to happen here, so I have just used two application panes (i.e. panes that just run a display-function to redisplay opportunely.1/example
Replies (1)
-
@screwlisp@gamerplus.org 2026-05-15 01:09
@chiply@fosstodon.org when we talked about presentation types, there's e.g. this, I like to use the alist version: CLIM-USER> (accept-from-string (expand-presentation-type-abbreviation '(subset-alist (("foo" . "football") (ghost . "busters")) :test equal)) "fo,gh") ("football" "busters") ((SUBSET-COMPLETION (("foo" . "football") (GHOST . "busters")) :TEST EQUAL :VALUE-KEY CLIM-INTERNALS::MEMBER-ALIST-VALUE-KEY) :DOCUMENTATION-KEY CLIM-INTERNALS::MEMBER-ALIST-DOC-KEY) 6 But it wants me to completeevery2/