In latex-mode
when I use TeX-insert-macro
to type a \input{...}
macro, Auctex conveniently offers filename completion, which is great.
However, it seems to search a lot of places to compile the completion
list, because emacs hangs for almost a minute on my poor little
laptop.
Is there a way for TeX-insert-macro
to offer dumb filename completion?
By "dumb", I mean the one you get when calling find-file
. Most of
the time the file I want to input is just one directory away, so that
would be more than fine.
If that's not possible, is there another way to speed it up?
I noticed when I insert the \include
macro the list of filenames is
much shorter, so maybe there's a way to use that list for the \input
macro as well.