Entries from 2015-05-04 to 1 day

Emacsでgitのdiffを見るときのfont colorを変える

.emacsやinits/00-setting.elに以下を記述 (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more…

Lispで無名関数を作ったはいいけど,実行はどうすれば...?の解決

初心者向けのサイトを見ているとlambdaを使用しているのは良いが,任意のタイミングでlambdaを実行する方法について言及している場合が少ない. なので,調べた方法について記述する. 結論としては,funcallにlambdaと引数を渡すことで実行できる. code ま…