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" .

Re: [Chicken-users] Auto CompletionProblems

2019-08-07 Thread Dan Leslie
It sounds like the implementation is not set. Try putting this as the first line in your source file: ;;; -*- mode: scheme; geiser-scheme-implementation: chicken -*- If that fixes your problems, then you'll probably want to limit Geiser to the one implementation, globally, or add that to all

Re: [Chicken-users] Auto CompletionProblems

2019-08-07 Thread ipcore
Hey, do you use helm by any chance? Then this might be related: https://gitlab.com/jaor/geiser/issues/271 Also if you haven't done so already, try running emacs with only the necessary packages enabled. On 8/3/19 4:47 PM, EfraimVagner via Chicken-users wrote: 1. You only ever get

Re: [Chicken-users] Auto CompletionProblems

2019-08-05 Thread ipcore
If you like, pastebin your init.el somewhere, then I'll check if I can spot any glaring errors. Other than that, I'm afraid I cannot help you. Maybe better ask the geiser folks. On 8/3/19 4:47 PM, EfraimVagner via Chicken-users wrote: 1. You only ever get auto-completion for the things you

Re: [Chicken-users] Auto CompletionProblems

2019-08-03 Thread EfraimVagner via Chicken-users
> 1. You only ever get auto-completion for the things you have > loaded/imported in the geiser repl. > I know that what should happen, but is isn't what happaning. > 2. Is company mode active? Yes, it works for some things (functions defines with define, for example) > 3. Did you

Re: [Chicken-users] Auto CompletionProblems

2019-08-03 Thread ipcore
Hi, Geiser+company should work fine (though it can be very slow with a busy namespace), so I assume something isn't correct in your setup. A couple of things to check/note: 1) You only ever get auto-completion for the things you have loaded/imported in the geiser repl. 2) Is company mode

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-completion to classes varibles, for example: > >

[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