tern icon indicating copy to clipboard operation
tern copied to clipboard

tern-find-definition skip imports section

Open TatriX opened this issue 7 years ago • 0 comments
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!

TatriX avatar Nov 24 '17 13:11 TatriX