Re: [Chicken-users] Auto CompletionProblems

2019-08-10 Thread EfraimVagner via Chicken-users
Hi and thanks for all the help! I tried what was suggested, but nothing worked... My init.el file is (including other, non related, packages): ``` (require 'package) ;;; Code: (add-to-list 'package-archives '("elpa" . "https://elpa.org/packages/";)) (add-to-list 'package-archives '("melpa" . "h

Re: [Chicken-users] Auto CompletionProblems

2019-08-03 Thread EfraimVagner via Chicken-users
do it before, but I tried it now and didn't change anything... > 4. Not sure why you need jedi? That's for python, no? > > On 8/2/19 10:19 AM, EfraimVagner via Chicken-users wrote: > I'm actually not sure, I don't really know what does what, so I just said wha

Re: [Chicken-users] Auto CompletionProblems

2019-08-02 Thread EfraimVagner via Chicken-users
On Friday, August 2, 2019 11:17 AM, EfraimVagner via Chicken-users wrote: > Hi, > So I'm working on a small project to learn Chicken Scheme. I'm using Emacs + > Geiser. > 1. I have an issue that when using coops's classes, I don't get > auto-completi

[Chicken-users] Auto CompletionProblems

2019-08-02 Thread EfraimVagner via Chicken-users
Hi, So I'm working on a small project to learn Chicken Scheme. I'm using Emacs + Geiser. 1. I have an issue that when using coops's classes, I don't get auto-completion to classes varibles, for example: (define-class () [(var 0)]) (define-method (method (class )) ;; When typing here (slot-val

Re: [Chicken-users] Print asymmetry with coops

2019-04-26 Thread EfraimVagner
Thanks! This is what I was looking for. ‐‐‐ Original Message ‐‐‐ On Friday, April 26, 2019 12:17 PM, Peter Bex wrote: > On Fri, Apr 26, 2019 at 09:11:02AM +0000, EfraimVagner wrote: > > > Hi, > > I've started to work on a small project for fun in scheme, and

[Chicken-users] Print asymmetry with coops

2019-04-26 Thread EfraimVagner
Hi, I've started to work on a small project for fun in scheme, and I wanted to use a class for one thing. I saw that there is the coops extension, that does what I want, but my problem is that when printing an object i get #. I saw I can use describe-object to get a better description of the ob