Hello
I think I posted this somewhere else but didn’t get a useful response. This forum seems much more active. I have a problem with the “navigate back” functionality after “goto definition” (f3) in same file. It doesnt return to where I came from, only if f3 takes me to a new file. I truly hope you can fix this because I miss Eclipse and Mylyn so badly after having been stuck with Webstorm for so long.
Example:
export class ActionsService {
channel: Channel = new Channel(new ObjectMap());
constructor(private someService: SomeService) {
}
someFunction() {
return this.someService()//f3 here brings me to someService member, but "navigate back" doesnt take me back to where I came from.
}
}