vindarel

Results 591 comments of vindarel

Hello ! Would you try again ? I added ``` (when (not (package-installed-p 'ivy)) (package-initialize) (package-install 'ivy)) (require 'counsel) ``` this should get you going. ![emacs pear_197](https://user-images.githubusercontent.com/3721004/34050720-2320059e-e1bc-11e7-89c5-c58f430aca17.png)

Cool ! That was quick :) I built emacs (can't make it use a x-toolkit but no big deal for now), but finding where to `require` those packages and what...

I suppose ivy has to be included into Emacs. It is already on Elpa (ivy on Elpa bundles ivy, swiper and counsel, they are separate on Melpa (https://github.com/abo-abo/swiper/issues/915)). I'm gonna...

Can you give the steps on how to setup this? By default, in the REPL, it didn't work. I tried setting `erudite::*swank-port*` to the current one, I tried creating a...

OK got it. It was just a bad usage. I was trying this: ``` ;; @eval ;; some comment (+ 1 1) ;; @end eval ``` and the call to...

@jcguu95 Did you look at [other terminal REPLs](https://lispcookbook.github.io/cl-cookbook/editor-support.html)? notably cl-repl and Lem (which can be started as a Lisp REPL) both have a simple interactive debugger. This project doesn't (and...

> Thanks for recommending cl-repl! I didn't know about that before :) Lem doesn't seem to provide a terminal repl though. Please correct me if I'm wrong. yes it does....

mmh the default behavior is an option that doesn't take an argument, such as ``` (:name :version :long "version" :description "Print version and exit.") ``` we add `:arg-parser` only when...