From laynor at gmail.com Wed Apr 5 02:01:06 2006 From: laynor at gmail.com (Alessandro Piras) Date: Wed, 5 Apr 2006 04:01:06 +0200 Subject: [linedit-devel] newbie question: documentation Message-ID: Hi, I'm a lisp newbie, and I'm wandering how and where to get documentation on your library. Actually I don't know how to find my way with lisp packages.. Because it seems that many don't have the "typical" documentation (at least typical for me, like README files or html documentation). Thanks __ Alessandro -------------- next part -------------- An HTML attachment was scrubbed... URL: From nikodemus at random-state.net Wed Apr 5 06:53:22 2006 From: nikodemus at random-state.net (Nikodemus Siivola) Date: Wed, 05 Apr 2006 09:53:22 +0300 Subject: [linedit-devel] newbie question: documentation In-Reply-To: (Alessandro Piras's message of "Wed, 5 Apr 2006 04:01:06 +0200") References: Message-ID: <87lkukecnx.fsf@logxor.random-state.net> "Alessandro Piras" writes: > Hi, I'm a lisp newbie, and I'm wandering how and where to get documentation on > your library. Actually I don't know how to find my way with lisp packages.. Linedit used to be documented in the README kept in the doc/ directory, but then the interface started fluctuating and I removed the docs rather then risk them going stale. (mapc 'describe '(linedit:linedit linedit:formedit)) describes the main programmatic interfaces, and (describe 'linedit:install-repl) the repl-wrapper. For more reading the source is the way to go for now. Cheers, -- Nikodemus Schemer: "Buddha is small, clean, and serious." Lispnik: "Buddha is big, has hairy armpits, and laughs." From laynor at gmail.com Wed Apr 5 09:34:26 2006 From: laynor at gmail.com (Alessandro Piras) Date: Wed, 5 Apr 2006 11:34:26 +0200 Subject: [linedit-devel] newbie question: documentation In-Reply-To: <87lkukecnx.fsf@logxor.random-state.net> References: <87lkukecnx.fsf@logxor.random-state.net> Message-ID: Thanks! Is there support for keybindings? I mean, can i bind a key or a keysequence to a function that operates on the line that I'm editing with linedit, like in the C version of readline? It whould be great.. On 4/5/06, Nikodemus Siivola wrote: > > "Alessandro Piras" writes: > > > Hi, I'm a lisp newbie, and I'm wandering how and where to get > documentation on > > your library. Actually I don't know how to find my way with lisp > packages.. > > Linedit used to be documented in the README kept in the doc/ directory, > but then the interface started fluctuating and I removed the docs rather > then risk them going stale. > > (mapc 'describe '(linedit:linedit linedit:formedit)) > > describes the main programmatic interfaces, and > > (describe 'linedit:install-repl) > > the repl-wrapper. For more reading the source is the way to go for > now. > > Cheers, > > -- Nikodemus Schemer: "Buddha is small, clean, and > serious." > Lispnik: "Buddha is big, has hairy armpits, and > laughs." > _______________________________________________ > linedit-devel mailing list > linedit-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/linedit-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nikodemus at random-state.net Wed Apr 5 17:49:07 2006 From: nikodemus at random-state.net (Nikodemus Siivola) Date: Wed, 05 Apr 2006 20:49:07 +0300 Subject: [linedit-devel] newbie question: documentation In-Reply-To: (Alessandro Piras's message of "Wed, 5 Apr 2006 11:34:26 +0200") References: <87lkukecnx.fsf@logxor.random-state.net> Message-ID: <87lkujdib0.fsf@logxor.random-state.net> "Alessandro Piras" writes: > Thanks! Is there support for keybindings? I mean, can i bind a key or a > keysequence to a function that operates on the line that I'm editing with > linedit, like in the C version of readline? It whould be great.. Yes, but neither exported nor documented. >> the repl-wrapper. For more reading the source is the way to go for >> now. src/command-keys.lisp and src/command-functions.lisp are iirc good starting points. Cheers, -- Nikodemus Schemer: "Buddha is small, clean, and serious." Lispnik: "Buddha is big, has hairy armpits, and laughs."