all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* A question about GTK file selection dialog and `use-dialog-box'
@ 2003-11-27  3:49 Peter S Galbraith
  2003-11-27 12:38 ` David Kastrup
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Peter S Galbraith @ 2003-11-27  3:49 UTC (permalink / raw)


Hi all,

Using a GTK build of CVS Emacs, I see that `read-file-name' uses a GTK
file selector instead of the minbuffer.  I had to disable it because
it's very awkward to use compared to the minibuffer (no history or
completion).  The only advertised way to disable it is to unset
`use-dialog-box', which also disables the nice `y-or-n-p' and
`yes-or-no-p' pop-ups (I like thoese!).

It would be great if the GTK file selector's minibuffer area acted like
the minibuffer (history and completion).  If not, then consider
providing a way to disable the file selector without disabling
`y-or-n-p' and `yes-or-no-p' pop-ups.

Thanks,
Peter

^ permalink raw reply	[flat|nested] 17+ messages in thread
* syntax highlighting / font lock for latex in emacs 21
@ 2003-02-13 21:28 Steve Petersen
  2003-02-13 22:02 ` Steve Petersen
  2003-02-13 22:09 ` David Kastrup
  0 siblings, 2 replies; 17+ messages in thread
From: Steve Petersen @ 2003-02-13 21:28 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 514 bytes --]


Hey folks,

I just upgraded to RedHat 8.0, and with it came emacs 21.2.1.  I'm using 
the same old .emacs file and such.  But for some reason, latex files 
will not automatically fontify (though emacs does go into LaTeX mode, 
and global-font-lock is on).  When I force fontification using M-g M-g, 
only comments get fontified--not LaTeX commands, etc.

I'm supposed to be writing a paper and this is so disconcerting... 
please help!  I've attached my .emacs file, in case that helps.

Thanks in advance,
Steve

[-- Attachment #2: .emacs --]
[-- Type: text/plain, Size: 2749 bytes --]

; rem these out for non-ifs emacs
; (define-key global-map "\C-x?" 'help-command)
; (define-key global-map "\C-h" 'delete-backward-char)

(setq-default abbrev-mode t)
(read-abbrev-file "~/.abbrev_defs")
(setq save-abbrevs t)

(setq-default transient-mark-mode t)

(add-hook 'text-mode-hook 'turn-on-auto-fill)

(custom-set-variables
 '(tex-dvi-view-command "xdvi" t)
 '(backup-by-copying t)
 '(global-font-lock-mode t nil (font-lock))
 '(tex-default-mode (quote latex-mode) t)
 '(font-lock-global-modes t))
(custom-set-faces)

; don't know if this works...

(require 'tex-site)
(setq outline-minor-mode-prefix "\C-c\C-o") ; Or whatever...
; might be better "\C-c\C-o"

; below from Per Abrahamsen of auc-tex group
(defun turn-on-outline-minor-mode ()
  (outline-minor-mode 1))

(add-hook 'LaTeX-mode-hook 'turn-on-outline-minor-mode)
(add-hook 'emacs-lisp-mode-hook 'turn-on-outline-minor-mode)
(add-hook 'TeXinfo-mode-hook 'turn-on-outline-minor-mode)

; will this work?

; (load-library "tex-jp.el")
; apparently not

; try this since could also use in regular text

(add-hook 'text-mode-hook 'turn-on-outline-minor-mode)

;
; this was added to have a local abbrev expansion in LaTeX
; (see discussion in email 'compnet' folder)

(define-abbrev-table 'LaTeX-mode-abbrev-table nil)
(add-hook 'LaTeX-mode-hook
          (lambda ()
            (setq local-abbrev-table LaTeX-mode-abbrev-table)))

; ; trying to set up xae (for editing xml etc; recommended by emacs
; ; newsgroups) from installation in directory below

; (add-to-list 'load-path (expand-file-name
; "/usr/share/emacs/20.4/site-lisp/xae-1.0beta6/lisp"))
; (require 'xae)

; ;
; ; see if this corrects html-loading bug w/ xae (suggested by some guy
; ; on the xae mailing list in March)
; ;

; (setq auto-mode-alist (cons '("\\.xsl$" . xae-mode) auto-mode-alist))
; (setq auto-mode-alist (cons '("\\.htm$" . xae-mode) auto-mode-alist))
; (setq auto-mode-alist (cons '("\\.html$" . xae-mode) auto-mode-alist))
; (setq auto-mode-alist (cons '("\\.xsd$" . xae-mode) auto-mode-alist))
; (setq auto-mode-alist (cons '("\\.hs$" . xae-mode) auto-mode-alist))
; (setq auto-mode-alist (cons '("\\.jhm$" . xae-mode) auto-mode-alist))


;
; using html-helper-mode temporarily instead of xae above (too
; confusing and I need to get html going for my class website)
;

(autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t)
(setq auto-mode-alist (cons '("\\.html$" . html-helper-mode)
auto-mode-alist))
(setq html-helper-do-write-file-hooks t)
(setq html-helper-build-new-buffer t)
(setq html-helper-address-string "<a href=\"mailto:spetey@umich.edu\">Steve Petersen</a>")

(autoload 'maniac-fill-mode "maniac" nil t)

(setq outline-regexp "[@\^L]+")

(global-set-key "\M-]" 'unexpand-abbrev)

[-- Attachment #3: Type: text/plain, Size: 151 bytes --]

_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://mail.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2003-11-29 18:41 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-27  3:49 A question about GTK file selection dialog and `use-dialog-box' Peter S Galbraith
2003-11-27 12:38 ` David Kastrup
2003-11-27 14:35   ` Stefan Monnier
2003-11-27 16:17 ` Danilo Segan
     [not found]   ` <dsegan@gmx.net>
2003-11-28  1:56     ` Peter S Galbraith
2003-11-28  2:34       ` Danilo Segan
2003-11-28  2:45     ` Peter S Galbraith
2003-11-29 11:15 ` Jan D.
     [not found]   ` <jan.h.d@swipnet.se>
2003-11-29 18:41     ` Peter S Galbraith
  -- strict thread matches above, loose matches on Subject: below --
2003-02-13 21:28 syntax highlighting / font lock for latex in emacs 21 Steve Petersen
2003-02-13 22:02 ` Steve Petersen
2003-02-13 22:54   ` David Kastrup
     [not found]     ` <dak@gnu.org>
2003-02-14  3:13       ` Peter S Galbraith
2003-11-28  1:42       ` A question about GTK file selection dialog and `use-dialog-box' Peter S Galbraith
     [not found]     ` <mailman.1963.1045192437.21513.help-gnu-emacs@gnu.org>
2003-02-14  3:50       ` syntax highlighting / font lock for latex in emacs 21 Steve Petersen
2003-02-17 12:44         ` Kester Clegg
2003-02-13 22:09 ` David Kastrup

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.