Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DrRacket autocomplete does not see functions defined in my source code

Tags:

racket

I am using Racket and DrRacket for a small project (I am trying to learn both and using them to teach a friend of mine some functional programming).

I have just discovered the autocomplete function (C-/) and it works fine with library functions, but it won't see my own functions.

I have also added

(provide (all-defined-out))

at the beginning of my source file (I thought that the autocomplete function might not see the symbols because they are not exported) but this does not solve the problem.

All the symbols are accessible in the DrRacket REPL (I can evaluate my functions and they work fine).

Can you give me any indication on how to solve this problem? Do I need to configure something?

like image 970
Giorgio Avatar asked Apr 15 '13 20:04

Giorgio


1 Answers

I can confirm that DrRacket currently works this way. The best advice I can give, is to submit a feature request (use "Submit Bugreport" in the Help menu) and then cross your fingers.

like image 92
soegaard Avatar answered Nov 17 '22 13:11

soegaard