all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* help with Elisp
@ 2021-10-14 22:18 Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:21 ` Emanuel Berg via Users list for the GNU Emacs text editor
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-14 22:18 UTC (permalink / raw)
  To: help-gnu-emacs

How can I disable the Elisp syntax helper that appears in the
echo area?

I don't even know what triggers it?

And after it pops up, the text remains even after
I move point.

Annoying!

But I see its value ... if it can just be disabled I'm happy.

GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, cairo version
1.16.0) of 2021-10-04

-- 
underground experts united
https://dataswamp.org/~incal




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

* Re: help with Elisp
  2021-10-14 22:18 help with Elisp Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-14 22:21 ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:23 ` [External] : " Drew Adams
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-14 22:21 UTC (permalink / raw)
  To: help-gnu-emacs

> How can I disable the Elisp syntax helper that appears in
> the echo area?

That's `eldoc-mode', probably!

Thanks to the people at #emacs ...

-- 
underground experts united
https://dataswamp.org/~incal




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

* RE: [External] : help with Elisp
  2021-10-14 22:18 help with Elisp Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:21 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-14 22:23 ` Drew Adams
  2021-10-14 22:34   ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-15  4:01   ` Michael Heerdegen
  2021-10-14 22:23 ` Gregory Heytings
  2021-10-14 22:24 ` Óscar Fuentes
  3 siblings, 2 replies; 13+ messages in thread
From: Drew Adams @ 2021-10-14 22:23 UTC (permalink / raw)
  To: Emanuel Berg; +Cc: 'Help-Gnu-Emacs (help-gnu-emacs@gnu.org)'

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

> How can I disable the Elisp syntax helper that appears in the
> echo area?
> 
> I don't even know what triggers it?
> 
> And after it pops up, the text remains even after
> I move point.
> 
> Annoying!
> 
> But I see its value ... if it can just be disabled I'm happy.

`eldoc-mode'

Yeah, it's annoying.
It used to be opt-in, now it's opt-out.

[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 12829 bytes --]

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

* Re: help with Elisp
  2021-10-14 22:18 help with Elisp Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:21 ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:23 ` [External] : " Drew Adams
@ 2021-10-14 22:23 ` Gregory Heytings
  2021-10-14 22:24 ` Óscar Fuentes
  3 siblings, 0 replies; 13+ messages in thread
From: Gregory Heytings @ 2021-10-14 22:23 UTC (permalink / raw)
  To: Emanuel Berg; +Cc: help-gnu-emacs


>
> How can I disable the Elisp syntax helper that appears in the echo area?
>
> I don't even know what triggers it?
>
> And after it pops up, the text remains even after I move point.
>
> Annoying!
>
> But I see its value ... if it can just be disabled I'm happy.
>

(eldoc-mode -1)?



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

* Re: help with Elisp
  2021-10-14 22:18 help with Elisp Emanuel Berg via Users list for the GNU Emacs text editor
                   ` (2 preceding siblings ...)
  2021-10-14 22:23 ` Gregory Heytings
@ 2021-10-14 22:24 ` Óscar Fuentes
  3 siblings, 0 replies; 13+ messages in thread
From: Óscar Fuentes @ 2021-10-14 22:24 UTC (permalink / raw)
  To: help-gnu-emacs

Emanuel Berg via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org> writes:

> How can I disable the Elisp syntax helper that appears in the
> echo area?

M-x eldoc-mode




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

* Re: [External] : help with Elisp
  2021-10-14 22:23 ` [External] : " Drew Adams
@ 2021-10-14 22:34   ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-14 22:39     ` Gregory Heytings
  2021-10-15  4:01   ` Michael Heerdegen
  1 sibling, 1 reply; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-14 22:34 UTC (permalink / raw)
  To: help-gnu-emacs

Drew Adams wrote:

> `eldoc-mode'
>
> Yeah, it's annoying.
> It used to be opt-in, now it's opt-out.

You have to do that each time?

;; (setq emacs-lisp-mode-hook nil)
(defun emacs-lisp-mode-hook-f ()
  ;; ...
  (eldoc-mode -1) )
(add-hook 'emacs-lisp-mode-hook #'emacs-lisp-mode-hook-f)

-- 
underground experts united
https://dataswamp.org/~incal




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

* Re: [External] : help with Elisp
  2021-10-14 22:34   ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-14 22:39     ` Gregory Heytings
  2021-10-14 22:48       ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 13+ messages in thread
From: Gregory Heytings @ 2021-10-14 22:39 UTC (permalink / raw)
  To: Emanuel Berg; +Cc: help-gnu-emacs


>
> You have to do that each time?
>

(global-eldoc-mode -1)



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

* Re: [External] : help with Elisp
  2021-10-14 22:39     ` Gregory Heytings
@ 2021-10-14 22:48       ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-14 22:48 UTC (permalink / raw)
  To: help-gnu-emacs

Gregory Heytings wrote:

>> You have to do that each time?
>
> (global-eldoc-mode -1)

Great ... better.

-- 
underground experts united
https://dataswamp.org/~incal




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

* Re: [External] : help with Elisp
  2021-10-14 22:23 ` [External] : " Drew Adams
  2021-10-14 22:34   ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-15  4:01   ` Michael Heerdegen
  2021-10-15  7:18     ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-15 14:29     ` Drew Adams
  1 sibling, 2 replies; 13+ messages in thread
From: Michael Heerdegen @ 2021-10-15  4:01 UTC (permalink / raw)
  To: help-gnu-emacs

Drew Adams <drew.adams@oracle.com> writes:

> `eldoc-mode'
>
> Yeah, it's annoying.

Why again is it annoying?  Just curious.

TIA,

Michael.




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

* Re: [External] : help with Elisp
  2021-10-15  4:01   ` Michael Heerdegen
@ 2021-10-15  7:18     ` Emanuel Berg via Users list for the GNU Emacs text editor
  2021-10-15  7:31       ` Michael Heerdegen
  2021-10-15 14:29     ` Drew Adams
  1 sibling, 1 reply; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-15  7:18 UTC (permalink / raw)
  To: help-gnu-emacs

Michael Heerdegen wrote:

>> `eldoc-mode'
>>
>> Yeah, it's annoying.
>
> Why again is it annoying? [...]

It appears without you doning anything.

Then it doesn't go away, even when you do move point.
-- 
underground experts united
https://dataswamp.org/~incal




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

* Re: [External] : help with Elisp
  2021-10-15  7:18     ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-15  7:31       ` Michael Heerdegen
  2021-10-15  9:52         ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 13+ messages in thread
From: Michael Heerdegen @ 2021-10-15  7:31 UTC (permalink / raw)
  To: help-gnu-emacs

Emanuel Berg via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org> writes:

> It appears without you doning anything.
>
> Then it doesn't go away, even when you do move point.

And it's not equally useful at the same time?  Can you keep syntax
(argument order) of thousands of Elisp functions in your head?

I could not live without it.  For the cost that it covers the -
otherwise empty - echo area.

Michael.




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

* Re: [External] : help with Elisp
  2021-10-15  7:31       ` Michael Heerdegen
@ 2021-10-15  9:52         ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 13+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-15  9:52 UTC (permalink / raw)
  To: help-gnu-emacs

Michael Heerdegen wrote:

> And it's not equally useful at the same time? Can you keep
> syntax (argument order) of thousands of Elisp functions in
> your head?

Ha! Thanks, but I don't think I use that many :)

I wonder how many I used? You could count unique words in your
Elisp source I guess, and remove comments and strings.
Would that give a good estimate?

Not that it matters ...

> I could not live without it. For the cost that it covers the
> - otherwise empty - echo area.

Yep, I see the use case for people who like it, I don't want
the computer to do or say anything unless I push
a button first.

-- 
underground experts united
https://dataswamp.org/~incal




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

* RE: [External] : help with Elisp
  2021-10-15  4:01   ` Michael Heerdegen
  2021-10-15  7:18     ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-15 14:29     ` Drew Adams
  1 sibling, 0 replies; 13+ messages in thread
From: Drew Adams @ 2021-10-15 14:29 UTC (permalink / raw)
  To: Michael Heerdegen, help-gnu-emacs@gnu.org

> > `eldoc-mode'  Yeah, it's annoying.
> 
> Why again is it annoying?  Just curious.

Not important; didn't mean to exaggerate.

To me it's noise.  If I want to know what
it shows me I'll ask, and in those cases
I usually want to know more than what it
shows me.

Probably also a case of habit and not a
feeling of needing it.

I wouldn't say that it's _particularly_
noisy or annoying.  Just one user who
doesn't get much from it, I guess.



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

end of thread, other threads:[~2021-10-15 14:29 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-14 22:18 help with Elisp Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-14 22:21 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-14 22:23 ` [External] : " Drew Adams
2021-10-14 22:34   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-14 22:39     ` Gregory Heytings
2021-10-14 22:48       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-15  4:01   ` Michael Heerdegen
2021-10-15  7:18     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-15  7:31       ` Michael Heerdegen
2021-10-15  9:52         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-15 14:29     ` Drew Adams
2021-10-14 22:23 ` Gregory Heytings
2021-10-14 22:24 ` Óscar Fuentes

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.