dired mode 是乙個強大的模式它能讓我們完成和檔案管理相關的所有操作。(1)
c-x d
進入dired mode
c-x c-j
可直接進入(2)進入dired mode後 各種操作(3)
c-x c-f
建立檔案c-x c-f
建立檔案
c-x c-s
儲存檔案
c-x d
進入dired mode
g
重新整理(4)設定預設遞迴刪除
(5)重用唯一的乙個緩衝區作為 dired mode 顯示專用緩衝區(setq dired-recursive-deletes 'always)
(setq dired-recursive-copies 'always)
(put 'dired-find-alternate-file
'disabled nil)
;; 主動載入 dired mode
;; (require 'dired)
;; (defined-key dired-mode-map (kbd "ret") 'dired-find-alternate-file)
;; 延遲載入
(with-eval-after-load 'dired
(define-key dired-mode-map (kbd "ret") 'dired-find-alternate-file))
414 emacs dired mode多檔案標記
全部學習彙總 以前使用dired mode比較多的操作是刪除多個檔案,可以直接在不同檔案上按d,然後x統一執行。其他的也就是操作或者重新命名,簡單的操作其實還能夠滿足我的需求。今天接觸了乙個多檔案標記的方法,可以在檔案上按m標記,u取消。效果如下 標記成功之後,左邊增加了小星星。之後,可以進行批量的...
NSSpeechSynthesizer 文字變語音
nsspeechsynthesizer 是 foundation中的乙個類,這個類可以方便的在cocoa應用程式中新增 文字到語言 功能。開發者可以使用這個類向ios 引用程式中新增類似功能。效果圖如下 截圖 speechutterance引數說明 utterance.voice 語系 不區分大小寫...
FileSystemWatcher判斷檔案複製完成
使用 filesystemwatcher 監視指定目錄中的更改。可監視指定目錄中的檔案或子目錄的更改。該元件可以監視本地計算機 網路驅動器或遠端計算機上的檔案。可監視目錄或檔案中的若干種更改。例如,可監視檔案或目錄的 attributes lastwrite 日期和時間或 size 方面的更改。通過...