Re: [racket-users] How to find source file loaded by/relevant for (require )?

2020-03-29 Thread Marc Kaufmann
Awesome, that looks like the right thing. Thanks, Marc On Fri, Mar 27, 2020 at 10:08 AM Alexis King wrote: > I recommend Ryan Culpepper’s whereis package: > https://docs.racket-lang.org/whereis/index.html It provides both a > programmatic interface and a raco command. > > Alexis > > On Mar 27,

Re: [racket-users] How to find source file loaded by/relevant for (require )?

2020-03-27 Thread Alexis King
I recommend Ryan Culpepper’s whereis package: https://docs.racket-lang.org/whereis/index.html It provides both a programmatic interface and a raco command. Alexis > On Mar 27, 2020, at 03:56, Marc Kaufmann wrote: > > Hi, > > I am trying to

[racket-users] How to find source file loaded by/relevant for (require )?

2020-03-27 Thread Marc Kaufmann
Hi, I am trying to set up vim such that it jumps to the correct source file when I see a `(require some-module)`. With packages that I have installed myself, I have managed to do so (80% solution), since they get installed in $HOME/.racket//pkgs. However, I can't quite figure out where all