[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex-cont-latexmk 30694ac352 039/100: make TAB switch
From: |
ELPA Syncer |
Subject: |
[elpa] externals/auctex-cont-latexmk 30694ac352 039/100: make TAB switch from compilation buffer back to tex file |
Date: |
Thu, 6 Jun 2024 03:57:54 -0400 (EDT) |
branch: externals/auctex-cont-latexmk
commit 30694ac352b6cead9a662bdde1afea46b7dd9cc4
Author: Paul Nelson <ultrono@gmail.com>
Commit: Paul Nelson <ultrono@gmail.com>
make TAB switch from compilation buffer back to tex file
---
czm-tex-compile.el | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/czm-tex-compile.el b/czm-tex-compile.el
index 11259d5647..f9a1b37912 100644
--- a/czm-tex-compile.el
+++ b/czm-tex-compile.el
@@ -78,8 +78,16 @@
"*"))
(let ((command (concat czm-tex-compile-command " " name ".tex")))
(setq czm-tex-compile--process
- (start-process-shell-command "czm-tex-compile"
czm-tex-compile--compilation-buffer-name
- command)))
+ (start-process-shell-command
+ "czm-tex-compile" czm-tex-compile--compilation-buffer-name
+ command)))
+ (let ((current-buf (current-buffer)))
+ (with-current-buffer (get-buffer
czm-tex-compile--compilation-buffer-name)
+ (special-mode)
+ (local-set-key (kbd "TAB")
+ (lambda ()
+ (interactive)
+ (set-window-buffer (selected-window)
current-buf)))))
(add-hook 'kill-buffer-hook 'czm-tex-compile--kill-process nil t)
(add-hook 'flymake-diagnostic-functions #'czm-tex-compile-flymake nil
t)
(when czm-tex-compile--log-watch-timer
- [elpa] externals/auctex-cont-latexmk 7c3c45f924 041/100: fix "tab goes from compilation buffer to tex buffer" feature, (continued)
- [elpa] externals/auctex-cont-latexmk 7c3c45f924 041/100: fix "tab goes from compilation buffer to tex buffer" feature, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk a3af9c0f47 044/100: refactoring to make functions smaller, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 776337f0d8 013/100: Fix the direction issue, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 6d8252a759 014/100: avoid unnecessary "find-file-noselect", ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 146dfe2350 019/100: Merge remote-tracking branch 'origin/main', ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 08d713ef4b 017/100: improve handling of some failure cases, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk dc493bf00c 022/100: delete a couple lines that should have been deleted last time, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 61cf12f244 032/100: for errors, just get line number directly, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 549d8c06a7 034/100: got it in decent working shape, modulo an occasional error, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 8b6924f833 038/100: fix typo and tweak README.org, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 30694ac352 039/100: make TAB switch from compilation buffer back to tex file,
ELPA Syncer <=
- [elpa] externals/auctex-cont-latexmk ef4f329804 045/100: change description, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk b208286d55 083/100: Add some tips to README, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk a769d92a2c 100/100: rename: tex-continuous -> auctex-cont-latexmk, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 91870fa1a2 075/100: add ":after latex" to the use-package declaration, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk d2f6dbaae4 073/100: correct use-package declaration, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 1ffdaaf722 080/100: Add some clarifications and remarks to the readme, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 831be210d9 082/100: Deactivate upon file rename, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 5c367ff46e 091/100: Replace tex-continuous--build-file with TeX-master-output-file, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk 6a9518e566 097/100: indentation, swap cl for seq, ELPA Syncer, 2024/06/06
- [elpa] externals/auctex-cont-latexmk acfaf552b7 011/100: Add .html to .gitignore, ELPA Syncer, 2024/06/06