tell application "Microsoft Word" delete (end key selection move unit a line extend by selecting) end tellこれをcontrol-K\ckという名前で保存すればOK。何でこんなに苦労しなきゃいけないんだ。楽しいじゃないか。
emacsが起動したら、org-agendaとnotmuchとeshellが三つのタブで開いていて欲しい。ちょっと調べたら、簡単にできることがわかった。こんな感じで、開くタブで実行するコマンドを指定してから、 tab-new
でタブを開いていくだけ。emacs27.1から実装されているらしい。しかしもう少しスマートにできないものか。
(setq tab-bar-new-tab-choice 'eshell) (tab-new) (setq tab-bar-new-tab-choice 'notmuch) (tab-new) (setq tab-bar-new-tab-choice 'org-agenda-list) (tab-new) (setq tab-bar-new-tab-choice "*scratch*") ;手動で新しいタブを開くときは*scratch*を開く