Questions tagged [inhibit-message]

9 questions
5
votes
1 answer

Possible to supress the: "Blocking call to accept-process-output with quit inhibited!!" message?

When running a process from a timer, this message is printed a lot. Is there a way to suppress the message entirely? For reference see: https://emacs.stackexchange.com/a/50681/2418
ideasman42
  • 8,375
  • 1
  • 28
  • 105
3
votes
2 answers

How do I suppress messages in the echo area (e.g. `Fill column set to 80 (was 80)`)?

When I open a Python file I keep seeing Fill column set to 80 (was 80) message in the echo area. I know I have set it this limit , but I don't want to be keep reminded about it. Is it possible to suppress this message? my setup: (add-hook…
alper
  • 1,238
  • 11
  • 30
2
votes
0 answers

How to prevent `Reverting buffer ‘’` message showing up?

I have plenty of files opened in my emacs daemon. In the background there is a running process which make changes on the *.yaml files that are already opened in my emacs. I am using auto-revert-mode in order to automatically reverts the buffer when…
alper
  • 1,238
  • 11
  • 30
2
votes
1 answer

Is it possible to suppress `LSP :: Connected to [pyls:N].` message on minibuffer?

When I open a Python file I keep seeing LSP :: Connected to [pyls:N] message in the minibuffer. How can I suppress it? Since I know I have enabled lsp, I don't want to see that message always whenever I open a new file. I have looked into …
alper
  • 1,238
  • 11
  • 30
1
vote
1 answer

Why does let binding sometimes seem to fail to override a value?

In this example, the message isn't shown, but it's still logged (message-log-max is ignored). (let ((inhibit-message t) (message-log-max nil)) (hs-minor-mode)) The text Showing all blocks ... done is shown in the *Messages*…
ideasman42
  • 8,375
  • 1
  • 28
  • 105
1
vote
1 answer

echo-area: disable help messages

I get the following in my minibuffer and I want to disable these basic help messages. Anyone know how? Type C-x 1 to delete the help window Type "q" in help window to restore it's previous buffer Looks like it comes from…
eflanigan00
  • 785
  • 4
  • 11
0
votes
0 answers

Remove messages before and after `compile`

When compiling, how can I remove all output in the *compilation* buffer except output issued by my code itself? i.e. remove everything except the line(s) marked *** below: -*- mode: compilation; default directory: ... -*- Compilation started at…
0
votes
1 answer

Problems with inhibit-message

I'm attempting to suppress certain minibuffer messages, but can't seem to get my configuration to work. There are two stack exchange answers that address this (here and here) and both suggest using a let-binding. For instance, I've tried running…
MattHusz
  • 177
  • 8
0
votes
1 answer

Is there a way to activate (inhibit-message) only for particular modes or buffers?

Is there any way to turn on (inhibit-message) only for particular modes or buffers or frames or windows? (any of those would do)
emacsomancer
  • 1,011
  • 1
  • 9
  • 16