On Fri, May 5, 2023 at 2:23 PM Arash Esbati <[email protected]> wrote:
>
> Hongyi Zhao <[email protected]> writes:
>
> > Now, I add the `:demand t` to the corfu's use-package configuration,
> > but the problem still remains:
>
> I don't think this is a corfu/AUCTeX issue. Try:
>
> • emacs -Q
> • M-x package-initialize RET
> • eval (setq tab-always-indent 'complete)
I tried both methods:
`M-: (setq tab-always-indent 'complete)` in minibuffer.
And
`C-x C-e (setq tab-always-indent 'complete)` in scratch buffer.
> • Open a .tex file and do 'M-x corfu-mode RET'
> • In your .tex file, do '$\be<TAB> $'
I use the following tex file to do the test, but nothing is completed:
\documentclass{article}
\begin{document}
$\be$
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
> I get the candidates instantly.
>
> Best, Arash