tern
tern copied to clipboard
tern-find-definition skip imports section
trafficstars
Is it's possible to skip imports section when doing tern-find-definition?
// foo.js
export default function Foo() {} (1)
// bar.js
import Foo from "./foo.js"; // (2)
new Foo(); // (3)
Running tern-find-definition moves cursor from (3) to (2).
But I want to go directly to (1).
Thank you!