2008-01-01から1年間の記事一覧

schemeマクロでchangelog

oeditでchangelog*1形式でメモを取りたいとき、Ctrl+3で日付、アイテムの追加ができるようになります。oedit.scm (app-set-key "Ctrl+3" (lambda() (chlog-add))) ; changelog追加 (define (chlog-add) (begin (define chlog-user "testuser") (define chlog…

mu licence

If you are asking what licence this software is released under, you are asking the wrong question. http://downlode.org/Creative/Writing/Notebook/2005/01/mu_license.html

改行時に自動インデント

oedit*1というテキストエディタでCtrl+J時に現在行と同じインデント(行頭の空白、全角空白、タブ)と改行を挿入するマクロです。 oedit.scm ;; インデント? (app-set-key "Ctrl+J" (lambda() (editor-paste-string (string-append "\n" (rxmatch-substring …