Skip to content

Instantly share code, notes, and snippets.

@jmikkola
Created May 27, 2026 13:00
Show Gist options
  • Select an option

  • Save jmikkola/570f419f36bd24325909b52d95fdbed6 to your computer and use it in GitHub Desktop.

Select an option

Save jmikkola/570f419f36bd24325909b52d95fdbed6 to your computer and use it in GitHub Desktop.
(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