I'm running emacs 23 from CVS.
thanks,
Tim
--
tcross (at) rapttech dot com dot au
> Tim X <ti...@nospam.dev.null> wrote:
>
>> Does anyone know how to disable/stop doc-view mode from attempting to
>> convert files when you are in dired and you hit view-file on a ps, pdf,
>> file?
>
> (rassq-delete-all #'doc-view-mode auto-mode-alist) did help for me,
> at least in Emacs 23.1. This rather radical solution disables all
> automatic choices of doc-view-mode, i.e., also for normal file opening.
Thanks Klaus. that was all I had come up with as well. Seems it may be
the way to go if no other suggestions come up.
thanks.
> Does anyone know how to disable/stop doc-view mode from attempting to
> convert files when you are in dired and you hit view-file on a ps, pdf,
> file?
I'm a bit curious. Which mode would you expect when trying to view an
ps/pdf/dvi file in emacs?
Bye,
Tassilo
> For PostScript, I would expect ps-mode, of course:
> | (ps-mode)
> | Major mode for editing PostScript with GNU Emacs.
I don't know about you, but that's what I get by default (and I can
then view it with doc-view via C-c C-c).
> Unfortunately, there are no specialized modes for editing PDF and DVI
> files, so I would expect that a default mode for viewing binary files
> is chosen.
You could use find-file-literally for that. Or of course
(add-to-list 'auto-mode-alist '("\\.pdf\\'" . fundamental-mode))
(add-to-list 'auto-mode-alist '("\\.dvi\\'" . fundamental-mode))
-- Stefan
I have my own conversion mode which I've been running for the past 9
years. The image rendering of files is of no use to me - I need the
files converted into plain text. Unfortunately, the two are treading on
each others toes. I know that I would probably be able to do something
with doc-view mode to give me what I want, but the mode I've written
also handles doc, docx, xls and ppt, plus integrates with browse-url so
that if I try to view-file on any of these types, it gives me a text
rendering that I can use. It is also a lot faster than doc-view.
I need it in text because I use emacspeak and it won't work with images.