diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-11-25 01:07:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-11-25 01:07:19 +0000 |
commit | 033306e36b44c10b4ff6fc270f77655239f78866 (patch) | |
tree | 41205ae8a2b11e95d490696e6ef9706f4359158f /lisp/textmodes | |
parent | 9ebc22d43e28f579c9ee32e92a9f00ff742f215c (diff) | |
download | emacs-033306e36b44c10b4ff6fc270f77655239f78866.tar.gz |
(tex-feed-input): New function.
(tex-define-common-keys): Add binding for C-c C-m.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 41ff4204de4..92ddade1985 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -337,6 +337,7 @@ subsubsection\\|paragraph\\|subparagraph\\)\\*?[ \t]*{" nil t) "Define the keys that we want defined both in TeX mode and in the TeX shell." (define-key keymap "\C-c\C-k" 'tex-kill-job) (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer) + (define-key keymap "\C-c\C-m" 'tex-feed-input) (define-key keymap "\C-c\C-q" 'tex-show-print-queue) (define-key keymap "\C-c\C-p" 'tex-print) (define-key keymap "\C-c\C-v" 'tex-view) @@ -990,6 +991,15 @@ Mark is left at original location." (while (zerop (buffer-size)) (sleep-for 1))))) +(defun tex-feed-input () + "Send input to the tex shell process. +In the tex buffer this can be used to continue an interactive tex run. +In the tex shell buffer this command behaves like `comint-send-input'." + (interactive) + (set-buffer (process-buffer (get-process "tex-shell"))) + (comint-send-input) + (tex-recenter-output-buffer nil)) + (defun tex-display-shell () "Make the TeX shell buffer visible in a window." (display-buffer (process-buffer (get-process "tex-shell"))) |