Kombination Code aus How can I prevent emacs from opening new window for compilation output? und Code aus http://www.emacswiki.org/emacs/CompilationMode, das ist mein Code für compile
, es bietet Ihnen 4 Funktionen:
1). Verwenden Sie compile-again
, um die gleiche Kompilierung wie das letzte Mal automatisch ohne Aufforderung auszuführen. Wenn es kein letztes Mal gibt oder ein Präfix-Argument vorhanden ist, verhält es sich wie M-x kompilieren.
2). compile
wird das aktuelle Fenster teilen, es wirkt sich nicht auf die anderen Fenster in diesem Rahmen aus.
3). Es wird den *compilation*
Puffer (Fenster) automatisch schließen, wenn es keinen Fehler gibt, behalten Sie es bei, wenn ein Fehler vorliegt.
4). es wird die Fehlerzeile und die Zeilennummer des Quellcodes im *compilation*
Puffer markiert, verwenden Sie M-n/p
jeden Fehler in *compilation*
Puffern, Enter
in der Fehlerzeile navigieren Sie zu der Zeile im Code Code zu springen.
(require 'compile)
(setq compilation-last-buffer nil)
(defun compile-again (ARG)
"Run the same compile as the last time.
If there is no last time, or there is a prefix argument, this acts like M-x compile."
(interactive "p")
(if (and (eq ARG 1)
compilation-last-buffer)
(progn
(set-buffer compilation-last-buffer)
(revert-buffer t t))
(progn
(call-interactively 'compile)
(setq cur (selected-window))
(setq w (get-buffer-window "*compilation*"))
(select-window w)
(setq h (window-height w))
(shrink-window (- h 10))
(select-window cur))))
(global-set-key (kbd "C-x C-m") 'compile-again)
(defun my-compilation-hook()
"Make sure that the compile window is splitting vertically."
(progn
(if (not (get-buffer-window "*compilation*"))
(progn
(split-window-vertically)))))
(add-hook 'compilation-mode-hook 'my-compilation-hook)
(defun compilation-exit-autoclose (STATUS code msg)
"Close the compilation window if there was no error at all."
;; If M-x compile exists with a 0
(when (and (eq STATUS 'exit) (zerop code))
;; then bury the *compilation* buffer, so that C-x b doesn't go there
(bury-buffer)
;; and delete the *compilation* window
(delete-window (get-buffer-window (get-buffer "*compilation*"))))
;; Always return the anticipated result of compilation-exit-message-function
(cons msg code))
(setq compilation-exit-message-function 'compilation-exit-autoclose)
(defvar all-overlays())
(defun delete-this-overlay(overlay is-after begin end &optional len)
(delete-overlay overlay)
)
(defun highlight-current-line()
"Highlight current line."
(interactive)
(setq current-point (point))
(beginning-of-line)
(setq beg (point))
(forward-line 1)
(setq end (point))
;; Create and place the overlay
(setq error-line-overlay (make-overlay 1 1))
;; Append to list of all overlays
(setq all-overlays (cons error-line-overlay all-overlays))
(overlay-put error-line-overlay
'face '(background-color . "red"))
(overlay-put error-line-overlay
'modification-hooks (list 'delete-this-overlay))
(move-overlay error-line-overlay beg end)
(goto-char current-point))
(defun delete-all-overlays()
"Delete all overlays"
(while all-overlays
(delete-overlay (car all-overlays))
(setq all-overlays (cdr all-overlays))))
(defun highlight-error-lines(compilation-buffer process-result)
(interactive)
(delete-all-overlays)
(condition-case nil
(while t
(next-error)
(highlight-current-line))
(error nil)))
(setq compilation-finish-functions 'highlight-error-lines)
Es funktioniert überhaupt nicht. – CodyChan