You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a require like const FooActions = require('foo/actions/FooActions'); is seen, more often than not hitting C-] on FooActions will cause Vim to either just jump to the beginning of this line, or jump to another place the same thing is imported. It would be better if this always jumped to the actual definition.
Maybe the solution is just to change everything to use import rather than require ¯\_(ツ)_/¯
The text was updated successfully, but these errors were encountered:
When a
require
likeconst FooActions = require('foo/actions/FooActions');
is seen, more often than not hittingC-]
onFooActions
will cause Vim to either just jump to the beginning of this line, or jump to another place the same thing is imported. It would be better if this always jumped to the actual definition.Maybe the solution is just to change everything to use
import
rather thanrequire
¯\_(ツ)_/¯The text was updated successfully, but these errors were encountered: