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
| ;;; ref. http://blog.practical-scheme.net/gauche/20100428-shorter-names | |
| ;;; http://d.hatena.ne.jp/higepon/20100511/1273584001 | |
| #+:xyzzy | |
| (require 'cmu_loop) | |
| (defmacro ^ (args . body) | |
| `(lambda ,args ,@body)) | |
| (defmacro define-caret-macros (chars) |
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
| ;;; ref. http://github.com/yhara/ShogiModan | |
| (eval-when (:compile-toplevel :load-toplevel :execute) | |
| (unless (find-package :modanshogi) | |
| (defpackage :modanshogi | |
| (:use #+:xyzzy :lisp | |
| #-:xyzzy :common-lisp)))) | |
| (provide 'modanshogi) |
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
| (setq load-path | |
| (cons "~/.emacs.d/site-lisp/elisp" load-path)) | |
| (require 'auto-complete) | |
| (setq-default ac-sources '(ac-source-abbrev ac-source-words-in-buffer)) | |
| (global-auto-complete-mode t) | |
| (setq ac-auto-start 3) | |
| (add-hook | |
| 'emacs-lisp-mode-hook | |
| (lambda () | |
| (setq ac-sources '(ac-source-words-in-buffer ac-source-symbols)))) |
NewerOlder