您好,登錄后才能下訂單哦!
小編給大家分享一下如何讓Emacs shell命令發(fā)送桌面通知,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
我總是使用 Eshell 來與操作系統(tǒng)進(jìn)行交互,因?yàn)樗c Emacs 無縫整合、支持處理 (遠(yuǎn)程) TRAMP 文件,而且在 Windows 上也能工作得很好。
啟動 shell 命令后 (比如耗時嚴(yán)重的構(gòu)建任務(wù)) 我經(jīng)常會由于切換緩沖區(qū)而忘了追蹤任務(wù)的運(yùn)行狀態(tài)。
多虧了 Emacs 的 鉤子 機(jī)制,你可以配置 Emacs 在某個外部命令完成后調(diào)用一個 elisp 函數(shù)。
我使用 John Wiegleys 所編寫的超棒的 alert 包來發(fā)送桌面通知:
(require 'alert) (defun eshell-command-alert (process status) "Send `alert' with severity based on STATUS when PROCESS finished." (let* ((cmd (process-command process)) (buffer (process-buffer process)) (msg (format "%s: %s" (mapconcat 'identity cmd " ") status))) (if (string-prefix-p "finished" status) (alert msg :buffer buffer :severity 'normal) (alert msg :buffer buffer :severity 'urgent)))) (add-hook 'eshell-kill-hook #'eshell-command-alert)
alert 的規(guī)則可以用程序來設(shè)置。就我這個情況來看,我只需要當(dāng)對應(yīng)的緩沖區(qū)不可見時得到通知:
(alert-add-rule :status '(buried) ;only send alert when buffer not visible :mode 'eshell-mode :style 'notifications)
這甚至對于 TRAMP 也一樣生效。下面這個截屏展示了失敗的 make
命令產(chǎn)生的 Gnome 桌面通知。
以上是“如何讓Emacs shell命令發(fā)送桌面通知”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。