-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go To Definition. #76
Comments
I use the There are some rough edges, but it does work pretty well |
You can also use the We should probably use an interface similar to that of |
Good point! Could we have a command that gathers the info from |
Yeah, shouldn't be too much trouble to implement. I'll have a look. |
Oh well, not as easy as I thought. I've made some progress, but haven't quite got this working. In principle though this is sooo much nicer than my old implementation -- thanks for bringing it up! |
Nice, that looks like a great start. I would also vote that you have the path |
Sure, that's just style stuff and shouldn't be too hard. I'm just a bit conflicted on how to handle the intercommunication from Julia to Atom for things like this where we actually return data instead of DOM nodes. Either I implement it how I think it should be done (construct an array of Basically I'm not sure if the current apporach of doing most of the rendering in
|
I'm a little confused. I would imagine something like this:
This might be what you are already doing, I'm not sure. Does that not seem to work for some reason? |
Yeah, that's exactly what I'm doing. It's just different from what the rest of Juno is doing, where we do pretty much all the rendering in Julia and pass the complete dom nodes to Atom. And because of that, most methods deal with those nodes -- setting up file links is annoying because of that for example. |
On a modern IDE, people usually expect to ctrl-click on a function/variable to jump to its definition. |
Hi,
New to Juno and new to Atom.
Trying to get some sort of Go To Definition.
I have tried to configure the
goto
package but not sure how to proceed.Due to performance issues, I'd like to avoid
Hydrogen
Thanks.
The text was updated successfully, but these errors were encountered: