Created
May 27, 2026 13:00
-
-
Save jmikkola/570f419f36bd24325909b52d95fdbed6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun working-memory-today () | |
| "open today's working memory file" | |
| (interactive) | |
| (let ((filename (concat "~/working-memory/" (format-time-string "%Y-%m-%d") ".md"))) | |
| (switch-to-buffer (find-file filename)))) | |
| (global-set-key (kbd "C-c w") 'working-memory-today) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment