2011-08-16 17 views

回答

0

這個建議將複製由錯誤指定到殺環行的點點:

(defadvice compilation-goto-locus (after next-error-copy-offending-line activate) 
    (kill-ring-save (line-beginning-position) (line-end-position))) 

如果你決定要搶錯誤信息,您可以使用此:

(progn 
    (next-error) 
    (with-current-buffer next-error-last-buffer 
    (kill-ring-save (line-beginning-position) (line-end-position)))) 
+0

與列表相同的效果:S – fakedrake

+0

@fakedrake然後問題不是順序,它是'next-error'的功能 - 我假設你想複製有問題的行...... –

+0

這是正確的。 – fakedrake