I have this awesome plugin working perfectly in my neovim setup on Ubuntu. Only one issue bothers me a lot.
I have an import defined like this:
import SomeMixin from 'myApp/mixins/shared/some-mixin';
in package.json I have
and app/mixins/shared/some-mixin.js exists and contains
import Ember from 'ember';
export default Ember.Mixin.create({});
The issue is when I place a cursor to myApp/mixins/shared/some-mixin and press gf it prints an error:
E447: Can't find file "myApp/mixins/shared/some-mixin" in path
Although it works as expected with relative imports defined like this:
import SomeMixin from '../../mixins/shared/some-mixin';
I have this awesome plugin working perfectly in my neovim setup on Ubuntu. Only one issue bothers me a lot.
I have an import defined like this:
in
package.jsonI haveand
app/mixins/shared/some-mixin.jsexists and containsThe issue is when I place a cursor to
myApp/mixins/shared/some-mixinand pressgfit prints an error:Although it works as expected with relative imports defined like this: