Finderというかファイルマネージャ(UbuntuだとNautilus)で開く設定。
こうする。
(defun current-dir-open() (interactive) (shell-command "open ."))
押しやすいキーにバインドしておくのもよい。
(global-set-key (kbd "C-1") 'current-dir-open)
参考:
Finderというかファイルマネージャ(UbuntuだとNautilus)で開く設定。
こうする。
(defun current-dir-open() (interactive) (shell-command "open ."))
押しやすいキーにバインドしておくのもよい。
(global-set-key (kbd "C-1") 'current-dir-open)
参考: