Search found 4 matches

by arvid
Sat Sep 12, 2015 6:45 pm
Forum: Common Lisp
Topic: CL-containers
Replies: 1
Views: 7326

Re: CL-containers

I have used this library a few times. mostly for queues and stacks. I seemed pretty straightforward to me. To understand it, you might want to look at the tests. You can also look at other projects that depend on it. According to quickdocs those are: blackthorn-engine - 2D game engine for Common Lis...
by arvid
Sun Jun 17, 2012 9:33 am
Forum: Emacs
Topic: Indenting "HTML" S-expressions
Replies: 6
Views: 37904

Re: Indenting "HTML" S-expressions

by arvid
Fri May 04, 2012 7:08 pm
Forum: Emacs
Topic: Indenting "HTML" S-expressions
Replies: 6
Views: 37904

Re: Indenting "HTML" S-expressions

Assuming you use common-lisp-indentation, look at edit slime-cl-indent.el you could add rules for :div, :a, etc (:div (&body)) ;; indents by 2 spaces (uses variable lisp-body-indent) or (:div (&whole 1)) ;; indents by 1 space (:a (as :div)) ;; :a uses :div definition one way of doing this wi...
by arvid
Fri May 04, 2012 6:43 pm
Forum: Emacs
Topic: start emacs, load slime and one .lisp file
Replies: 3
Views: 29336

Re: start emacs, load slime and one .lisp file

you can specify e-lisp function calls in the emacs command line. so to start emacs with slime make a shortcut with the following emacs --funcall=slime for example by emacs-slime shortcut /usr/bin/emacs-snapshot -g 162x51+15+0 %F --funcall=split-window-horizontally --funcall=slime As for loading the ...