* Echo elisp commands in a buffer @ 2018-08-24 5:48 J191 2018-08-24 6:59 ` Rusi ` (3 more replies) 0 siblings, 4 replies; 7+ messages in thread From: J191 @ 2018-08-24 5:48 UTC (permalink / raw) To: help-gnu-emacs Is there a facility, setting or plugin in emacs to list the sequence of elisp commands when using emacs, except perhaps listing the actual text a user enters ? example next-line [some edits] to-beginning-of-line [some edit] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Echo elisp commands in a buffer 2018-08-24 5:48 Echo elisp commands in a buffer J191 @ 2018-08-24 6:59 ` Rusi 2018-08-24 16:58 ` J191 2018-08-24 7:08 ` Joost Kremers ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Rusi @ 2018-08-24 6:59 UTC (permalink / raw) To: help-gnu-emacs https://github.com/lewang/command-log-mode is what I've used. There are some others (from phone) ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Echo elisp commands in a buffer 2018-08-24 6:59 ` Rusi @ 2018-08-24 16:58 ` J191 0 siblings, 0 replies; 7+ messages in thread From: J191 @ 2018-08-24 16:58 UTC (permalink / raw) To: help-gnu-emacs On Friday, August 24, 2018 at 10:59:48 AM UTC+4, Rusi wrote: > https://github.com/lewang/command-log-mode > is what I've used. > There are some others > (from phone) Thanks to all the replies. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Echo elisp commands in a buffer 2018-08-24 5:48 Echo elisp commands in a buffer J191 2018-08-24 6:59 ` Rusi @ 2018-08-24 7:08 ` Joost Kremers 2018-08-24 7:21 ` tomas 2018-08-24 9:40 ` Michael Heerdegen 2018-08-28 1:14 ` Drew Adams 3 siblings, 1 reply; 7+ messages in thread From: Joost Kremers @ 2018-08-24 7:08 UTC (permalink / raw) To: J191; +Cc: help-gnu-emacs On Fri, Aug 24 2018, J191 wrote: > Is there a facility, setting or plugin in emacs to list the > sequence of elisp commands when using emacs, except perhaps > listing the actual text a user enters ? > > example > > next-line > [some edits] > to-beginning-of-line > [some edit] In Emacs 26, typing `C-h l` basically gives you that, although it does list the actual text the user entered. -- Joost Kremers Life has its moments ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Echo elisp commands in a buffer 2018-08-24 7:08 ` Joost Kremers @ 2018-08-24 7:21 ` tomas 0 siblings, 0 replies; 7+ messages in thread From: tomas @ 2018-08-24 7:21 UTC (permalink / raw) To: help-gnu-emacs -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, Aug 24, 2018 at 09:08:34AM +0200, Joost Kremers wrote: > > On Fri, Aug 24 2018, J191 wrote: > >Is there a facility, setting or plugin in emacs to list the > >sequence of elisp commands when using emacs, except perhaps > >listing the actual text a user enters ? > > > >example > > > >next-line > >[some edits] > >to-beginning-of-line > >[some edit] > > In Emacs 26, typing `C-h l` basically gives you that, although it > does list the actual text the user entered. I looked a bit at the project's parent (I dislike Github, sorry), and there are a couple of differences: - command-log-mode and mwe-log-commands do filter certain commands (self-insert-command, among other things) - it happens "real time", what actually gave me the idea of munging it for one use case I have: while showing how to do things in Emacs before an audience, people don't see what I type. It would be nice if... (you get the idea). Cheers - -- tomás -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEUEARECAAYFAlt/sgkACgkQBcgs9XrR2kbx2wCdHWNy878GAgcCUy7oS4i3RO7I hQ4AmIDU8slGQ1LlpBpopQ7XJtwWtXc= =QJj7 -----END PGP SIGNATURE----- ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Echo elisp commands in a buffer 2018-08-24 5:48 Echo elisp commands in a buffer J191 2018-08-24 6:59 ` Rusi 2018-08-24 7:08 ` Joost Kremers @ 2018-08-24 9:40 ` Michael Heerdegen 2018-08-28 1:14 ` Drew Adams 3 siblings, 0 replies; 7+ messages in thread From: Michael Heerdegen @ 2018-08-24 9:40 UTC (permalink / raw) To: J191; +Cc: help-gnu-emacs J191 <dj9027@gmail.com> writes: > Is there a facility, setting or plugin in emacs to list the sequence > of elisp commands when using emacs, except perhaps listing the actual > text a user enters ? I guess I could change interaction-log.el to do that if the package otherwise seems ok for you. Unfortunately it's not (yet) in Gnu Elpa. Michael. ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: Echo elisp commands in a buffer 2018-08-24 5:48 Echo elisp commands in a buffer J191 ` (2 preceding siblings ...) 2018-08-24 9:40 ` Michael Heerdegen @ 2018-08-28 1:14 ` Drew Adams 3 siblings, 0 replies; 7+ messages in thread From: Drew Adams @ 2018-08-28 1:14 UTC (permalink / raw) To: J191, help-gnu-emacs > Is there a facility, setting or plugin in emacs to list the sequence of elisp > commands when using emacs, except perhaps listing the actual text a user > enters ? > > example > > next-line > [some edits] > to-beginning-of-line > [some edit] Library showkey.el can help with this. See `showkey-log-mode'. https://www.emacswiki.org/emacs/ShowKey ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-08-28 1:14 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-08-24 5:48 Echo elisp commands in a buffer J191 2018-08-24 6:59 ` Rusi 2018-08-24 16:58 ` J191 2018-08-24 7:08 ` Joost Kremers 2018-08-24 7:21 ` tomas 2018-08-24 9:40 ` Michael Heerdegen 2018-08-28 1:14 ` Drew Adams
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).