help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs will show the scratch window instead of the tex document windo


From: Hongyi Zhao
Subject: Re: Emacs will show the scratch window instead of the tex document window when I double click on a tex document to open it.
Date: Mon, 1 May 2023 22:08:44 +0800

On Mon, May 1, 2023 at 9:55 PM Hongyi Zhao <hongyi.zhao@gmail.com> wrote:
>
> On Mon, May 1, 2023 at 9:41 PM <tomas@tuxteam.de> wrote:
> >
> > On Mon, May 01, 2023 at 09:03:27PM +0800, Hongyi Zhao wrote:
> > > On Mon, May 1, 2023 at 7:38 PM <tomas@tuxteam.de> wrote:
> >
> > [...]
> >
> > > > That would mean that the file is loaded, but Emacs still shows you
> > > > the *scratch* buffer. Otherwise, the file doesn't get loaded at
> > > > all.
> > > >
> > > > This might give hints to find the problem.
> > >
> > > See the testing below:
> > >
> > > $ emacs my-icur.tex
> > >
> > > `C-x b RET` gives the following info:
> > >
> > >
> > > Loading server...done
> > > Iedit default key binding is C-;
> > > Loading /home/werner/.emacs.d/var/recentf-save.el (source)...done
> > [...]
> >
> > Now I'm confused. What we see here is a *Messages* buffer, not a buffer
> > list (what I'd expect C-x b to give us). But there are some messages
> > in there hinting at errors during initialization.
>
> 1. Sorry for my misunderstanding your meaning.
>
> You let me do the `C-x b TAB`
> But I do the `C-x b RET`
>
> I confirm the file is listed in the buffer list.
>
> 2. I confirm that the culprit is the following configuration in the init file:
>
> (use-package company-math
>   :hook
>   (LaTeX-mode . (lambda ()
>           (setq-local company-backends (append '(company-math-symbols-latex
>                              company-latex-commands)
>                                (company--backends)
>                                ))))
>
>   :config
>   (add-to-list 'company-backends 'company-math-symbols-unicode)
>   ;; https://github.com/company-mode/company-mode/discussions/1253
>   ;; (set-company-backend 'LaTeX-mode
>   ;;   'company-math-symbols-latex 'company-latex-commands
> 'company-math-symbols-unicode)
>   )
>
> Commented out the above configuration fixed this problem. But it
> should mean that there is something wrong in my above configuration
> which I still cannot figure out.

I changed to the following setting and the problem discussed here has
been fixed:

(use-package company-math
  :hook
  ;; This will enable the company-math backend for LaTeX mode
  (LaTeX-mode . (lambda ()
          (setq-local company-backends
                  (append '((company-math-symbols-latex company-latex-commands))
                      company-backends))))
  )


Zhao



reply via email to

[Prev in Thread] Current Thread [Next in Thread]