lucerne icon indicating copy to clipboard operation
lucerne copied to clipboard

creating a new defview

Open kanubacode opened this issue 10 years ago • 3 comments

If I write a new defview with the @route reader macro, it is not added to the routing table upon C-c C-c. However, If I restart my Lisp image, it's displayed in my web browser. Is there something I must do to iteratively define pages?

kanubacode avatar Jan 04 '16 23:01 kanubacode

Slime didn't include the @route part until I installed "slime-annot" in Emacs. Then I started getting The variable @ROUTE is unbound. [Condition of type UNBOUND-VARIABLE]

coseltech avatar Mar 02 '16 16:03 coseltech

+1. How to do that ? Is there an alternative syntax ? It's a blocking point :/

vindarel avatar Apr 20 '17 22:04 vindarel

guys, I picked this on caveman:

(syntax:use-syntax :annot) 
;; instead of (annot:enable-annot-syntax)

it doesn't appear on cl-annot doc, but it works. I can C-c C-c new routes.

vindarel avatar Apr 29 '17 22:04 vindarel