注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
emacs で編集中のファイルの git log -p を emacs で見る elisp を書きました。 すでにありそうですが、... emacs で編集中のファイルの git log -p を emacs で見る elisp を書きました。 すでにありそうですが、探すより実装する方が楽しいので自分で書きました。 M-x log で実行できます。 (require 'cl) (defmacro* with-temp-directory (dir &body body) `(with-temp-buffer (cd ,dir) ,@body)) (defmacro aif (test-form then-form &optional else-form) `(let ((it ,test-form)) (if it ,then-form ,else-form))) (defmacro* awhen (test-form &body body) `(aif ,test-form (progn ,@body))) (defun
2012/10/06 リンク