2024-10-14 (Mon)
- オムレツを焼く。
- 体育の日の休日だが授業がある。旗を立てて休むことを強制されるよりましか。
- サミットでおにぎり弁当と惣菜の唐揚げを買う。
- 授業二つ。本格稼働開始。
- バスで帰宅。休日なので車内の雰囲気が違う。
- 夕食は誕生パーティー。ステーキを焼いて小さいケーキを食べてワインをいただく。63才ということだが、ちょっと自分でも戸惑ってしまう。
emacsのtab-modeの整備。ポイントはキー操作か。今のところの割り当て。コマンドキー+矢印キーで、タブの移動と開閉ができるようにした。あと、コマンドキー+リターンキーで、開いているタブのリストを表示して選択できる。
("s-<right>" . tab-next) ("s-<left>" . tab-previous) ("s-<up>" . tab-new) ("s-<down>" . tab-close) ("s-b" . switch-to-buffer-other-tab) ("s-n" . tab-new) ("s-o" . tab-next) ("s-w" . tab-close) ("s-<return>" . tab-switch)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; my/mailcheck.el ;; (defun my/mailcheck () "show unread mails if any" (interactive) (shell-command-to-string "mbsync sakura") (shell-command-to-string "notmuch new") (setq mails (substring (shell-command-to-string "notmuch count tag:unread") 0 -1)) (if (equal "0" mails) (message "No mail") (notmuch-search "tag:unread") (message "%s unread" mails) ) )