* run-hooks: Symbol’s value as variable is void: comint-osc-handlers
@ 2021-10-16 1:10 Hongyi Zhao
2021-10-16 20:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 1 reply; 6+ messages in thread
From: Hongyi Zhao @ 2021-10-16 1:10 UTC (permalink / raw)
To: help-gnu-emacs
I installed `comint-mime` with the following configuration:
```emacs-lisp
(use-package comint-mime
:straight (:host github :type git :repo "astoff/comint-mime"
:files (:defaults "*.py" "*.sh"))
:hook ((shell-mode inferior-python-mode) . comint-mime-setup)
:custom
(org-format-latex-options '(plist-put org-format-latex-options :scale 1.5))
```
But when I start the python interpreter by `C-c C-p`, the following
message will be triggered:
```
run-hooks: Symbol’s value as variable is void: comint-osc-handlers
Shell native completion is disabled, using fallback
```
Any hints for this problem?
Regards,
HZ
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: run-hooks: Symbol’s value as variable is void: comint-osc-handlers
2021-10-16 1:10 run-hooks: Symbol’s value as variable is void: comint-osc-handlers Hongyi Zhao
@ 2021-10-16 20:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-17 5:01 ` Hongyi Zhao
0 siblings, 1 reply; 6+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-16 20:16 UTC (permalink / raw)
To: help-gnu-emacs
Hongyi Zhao wrote:
> run-hooks: Symbol’s value as variable is void:
> comint-osc-handlers Shell native completion is disabled,
> using fallback
>
> Any hints for this problem?
Yes, they refer to "comint-osc-handlers" at a time when it
isn't defined ...
But it isn't a problem since they are using fallback :)
You can tell them about it, or set it to nil yourself and see
what happens ...
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: run-hooks: Symbol’s value as variable is void: comint-osc-handlers
2021-10-16 20:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-17 5:01 ` Hongyi Zhao
2021-10-17 10:03 ` Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 1 reply; 6+ messages in thread
From: Hongyi Zhao @ 2021-10-17 5:01 UTC (permalink / raw)
To: Emanuel Berg, help-gnu-emacs
On Sun, Oct 17, 2021 at 4:17 AM Emanuel Berg via Users list for the
GNU Emacs text editor <help-gnu-emacs@gnu.org> wrote:
>
> Hongyi Zhao wrote:
>
> > run-hooks: Symbol’s value as variable is void:
> > comint-osc-handlers Shell native completion is disabled,
> > using fallback
> >
> > Any hints for this problem?
>
> Yes, they refer to "comint-osc-handlers" at a time when it
> isn't defined ...
>
> But it isn't a problem since they are using fallback :)
>
> You can tell them about it, or set it to nil yourself and see
> what happens ...
The author of comint-mime told the following [1]:
You need Emacs 28.
[1] https://github.com/astoff/comint-mime/issues/7#issuecomment-944886198
HZ
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: run-hooks: Symbol’s value as variable is void: comint-osc-handlers
2021-10-17 5:01 ` Hongyi Zhao
@ 2021-10-17 10:03 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-17 14:16 ` Hongyi Zhao
0 siblings, 1 reply; 6+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-17 10:03 UTC (permalink / raw)
To: help-gnu-emacs
Hongyi Zhao wrote:
> The author of comint-mime told the following [...]
>
> You need Emacs 28.
:)
I have
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] 6+ messages in thread
* Re: run-hooks: Symbol’s value as variable is void: comint-osc-handlers
2021-10-17 10:03 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2021-10-17 14:16 ` Hongyi Zhao
2021-10-17 14:42 ` Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 1 reply; 6+ messages in thread
From: Hongyi Zhao @ 2021-10-17 14:16 UTC (permalink / raw)
To: Emanuel Berg, help-gnu-emacs
On Sun, Oct 17, 2021 at 6:10 PM Emanuel Berg via Users list for the
GNU Emacs text editor <help-gnu-emacs@gnu.org> wrote:
>
> Hongyi Zhao wrote:
>
> > The author of comint-mime told the following [...]
> >
> > You need Emacs 28.
>
> :)
>
> I have
>
> GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, cairo
> version 1.16.0) of 2021-10-04
I think that he means the least version of Emacs.
HZ
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: run-hooks: Symbol’s value as variable is void: comint-osc-handlers
2021-10-17 14:16 ` Hongyi Zhao
@ 2021-10-17 14:42 ` Emanuel Berg via Users list for the GNU Emacs text editor
0 siblings, 0 replies; 6+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2021-10-17 14:42 UTC (permalink / raw)
To: help-gnu-emacs
Hongyi Zhao wrote:
>>> The author of comint-mime told the following [...]
>>>
>>> You need Emacs 28.
>>
>> :)
>>
>> I have
>>
>> GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, cairo
>> version 1.16.0) of 2021-10-04
>
> I think that he means the least version of Emacs.
Just get the latest if you intent do do bleeding-edge testing
like this, it will increase your success rate ...
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-10-17 14:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-16 1:10 run-hooks: Symbol’s value as variable is void: comint-osc-handlers Hongyi Zhao
2021-10-16 20:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-17 5:01 ` Hongyi Zhao
2021-10-17 10:03 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-17 14:16 ` Hongyi Zhao
2021-10-17 14:42 ` Emanuel Berg via Users list for the GNU Emacs text editor
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).