all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Lisp help messages in echo area
@ 2017-07-16 18:24 John Ankarström
  2017-07-16 18:36 ` Kaushal Modi
  2017-07-17  1:44 ` Emanuel Berg
  0 siblings, 2 replies; 6+ messages in thread
From: John Ankarström @ 2017-07-16 18:24 UTC (permalink / raw)
  To: help-gnu-emacs

Hello all,

I have a really simple question: what function triggers the Emacs
Lisp help messages in the echo area?

For example, when I put my cursor inside a (defun) expression,
the following displays in the echo area:

--8<---------------cut here---------------start------------->8---
defun: (NAME ARGLIST &optional DOCSTRING DECL &rest BODY)
--8<---------------cut here---------------end--------------->8---

This appears to trigger when moving the cursor, but also when
inserting a character. These are two good clues, but I haven't
been able to find it. I haven't yet looked in the Emacs C source
code -- I send this e-mail message hoping that somebody knows the
answer, before I have to get into the C source.

I'm asking because I'd like to fix the function
`outshine-self-insert-command' from the `outshine' package, which
doesn't trigger the Lisp help message, unlike the default
`self-insert-command'.

If anybody knows the answer, or has any pointers as to where I
should look, I'd be greatful.

Thanks,

- John



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Lisp help messages in echo area
  2017-07-16 18:24 Lisp help messages in echo area John Ankarström
@ 2017-07-16 18:36 ` Kaushal Modi
  2017-07-16 19:01   ` John Ankarström
  2017-07-17  1:44 ` Emanuel Berg
  1 sibling, 1 reply; 6+ messages in thread
From: Kaushal Modi @ 2017-07-16 18:36 UTC (permalink / raw)
  To: John Ankarström, Help Gnu Emacs mailing list

On Sun, Jul 16, 2017, 2:25 PM John Ankarström <john@ankarstrom.se> wrote:

> Hello all,
>
> I have a really simple question: what function triggers the Emacs
> Lisp help messages in the echo area?
>
> For example, when I put my cursor inside a (defun) expression,
> the following displays in the echo area:
>
> --8<---------------cut here---------------start------------->8---
> defun: (NAME ARGLIST &optional DOCSTRING DECL &rest BODY)
> --8<---------------cut here---------------end--------------->8---
>

That's eldoc-mode.

I'm asking because I'd like to fix the function
> `outshine-self-insert-command' from the `outshine' package, which
> doesn't trigger the Lisp help message, unlike the default
> `self-insert-command'.
>
> If anybody knows the answer, or has any pointers as to where I
> should look, I'd be greatful.
>

Yeah that's annoying. Thankfully this fixes it:

(with-eval-after-load 'eldoc
  (eldoc-add-command 'outshine-self-insert-command))

> --

Kaushal Modi


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Lisp help messages in echo area
  2017-07-16 18:36 ` Kaushal Modi
@ 2017-07-16 19:01   ` John Ankarström
  2017-07-16 19:45     ` Kaushal Modi
  2017-07-21 15:37     ` Kaushal Modi
  0 siblings, 2 replies; 6+ messages in thread
From: John Ankarström @ 2017-07-16 19:01 UTC (permalink / raw)
  To: help-gnu-emacs

Kaushal Modi <kaushal.modi@gmail.com> writes:

> That's eldoc-mode.

Oh, so that's what eldoc-mode is! Heard of it before, but never
realized that was it.

> Yeah that's annoying. Thankfully this fixes it:
>
> (with-eval-after-load 'eldoc
>   (eldoc-add-command 'outshine-self-insert-command))

Thank you so much! It works perfectly. I'm going to send a pull
request to the maintainer of outshine.

- John



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Lisp help messages in echo area
  2017-07-16 19:01   ` John Ankarström
@ 2017-07-16 19:45     ` Kaushal Modi
  2017-07-21 15:37     ` Kaushal Modi
  1 sibling, 0 replies; 6+ messages in thread
From: Kaushal Modi @ 2017-07-16 19:45 UTC (permalink / raw)
  To: John Ankarström, Help Gnu Emacs mailing list

On Sun, Jul 16, 2017, 3:02 PM John Ankarström <john@ankarstrom.se> wrote:

> Kaushal Modi <kaushal.modi@gmail.com> writes:
>
> > That's eldoc-mode.
>
> Oh, so that's what eldoc-mode is! Heard of it before, but never
> realized that was it.


Yes, it is one of the really well-designed minor modes. It blends so well
into the major mode, that it doesn't feel like a minor mode :)

> Yeah that's annoying. Thankfully this fixes it:
> >
> > (with-eval-after-load 'eldoc
> >   (eldoc-add-command 'outshine-self-insert-command))
>
> Thank you so much! It works perfectly. I'm going to send a pull
> request to the maintainer of outshine.
>

Great! That's a very good idea.

> --

Kaushal Modi


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Lisp help messages in echo area
  2017-07-16 18:24 Lisp help messages in echo area John Ankarström
  2017-07-16 18:36 ` Kaushal Modi
@ 2017-07-17  1:44 ` Emanuel Berg
  1 sibling, 0 replies; 6+ messages in thread
From: Emanuel Berg @ 2017-07-17  1:44 UTC (permalink / raw)
  To: help-gnu-emacs

John Ankarström wrote:

> defun: (NAME ARGLIST &optional DOCSTRING DECL
> &rest BODY)

Knowing the interfaces of/to each component
(e.g., a function) is the key to all
programming and actually all *activity*.
Having immediate access to it is the one
advantage that will rule supreme.

Many people think programming makes you
practically inept - just staring at unworldly
code all night long...?! This might hold true
if you *only* do programming - such
one-dimensionalness is of course harmful
whatever field. But do programming *and*
something else as well - trust me, this soon
makes you better at doing "something else" than
the people who do that all day every day! (Or
at least just as good with much less effort.)

For example, go to your tool box and pick up
a combination spanner/wrench and a
combination plier. "Examine" those tools, in
the Shadowgate/Déjà Vu lingo, and identify
their properties and interfaces as would
a programmer.

Then, have the very pleasant realization that
having mastered programming - that is, the
craft, not every detail which would be
impossible - having mastered programming,
everything else is child's play :)

-- 
underground experts united
http://user.it.uu.se/~embe8573




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Lisp help messages in echo area
  2017-07-16 19:01   ` John Ankarström
  2017-07-16 19:45     ` Kaushal Modi
@ 2017-07-21 15:37     ` Kaushal Modi
  1 sibling, 0 replies; 6+ messages in thread
From: Kaushal Modi @ 2017-07-21 15:37 UTC (permalink / raw)
  To: John Ankarström, help-gnu-emacs

On Sun, Jul 16, 2017 at 3:02 PM John Ankarström <john@ankarstrom.se> wrote:

>
> Thank you so much! It works perfectly. I'm going to send a pull
> request to the maintainer of outshine.
>

Thanks![1]

[1]:
https://github.com/alphapapa/outshine/commit/0fdd0cd619d20e71b3157f225bb117a7e21dc9b3

-- 

Kaushal Modi


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-07-21 15:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-16 18:24 Lisp help messages in echo area John Ankarström
2017-07-16 18:36 ` Kaushal Modi
2017-07-16 19:01   ` John Ankarström
2017-07-16 19:45     ` Kaushal Modi
2017-07-21 15:37     ` Kaushal Modi
2017-07-17  1:44 ` Emanuel Berg

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.