atom-open-this icon indicating copy to clipboard operation
atom-open-this copied to clipboard

Open file under cursor like `gf`(Vim), `C-x C-f`(Emacs)

Results 7 atom-open-this issues
Sort by recently updated
recently updated
newest added

I don't understand what this means: "Invoke open-this:here via command palette or keymap." Can you elaborate a little more about this step in the "How to Use" section? I have...

I'm currently working in a huge codebase, where authors use [resolve.alias](https://webpack.js.org/configuration/resolve/#resolve-alias) to avoid typing `../../../` in import statements. Would be very handy if `open-this` supported that config and opened the...

This feature is needed to support various external resolvers. For instance, our client-side stack supports requiring files by namespace, e.g. `require('app:ui.field.input’)`. This syntax is specific to our project with paths...

Currently if my cursor is on the line anywhere but inside the string containing the filename, the file will not open, e.g.: ```js const foo = re|quire('./foo.js') // ^--- cursor...

enhancement

I used this: 'atom-text-editor': 'ctrl-y': 'open-this:here' which makes a file, where the curser is on, open like it should be. But it is opened in the same tab in the...

Hi, I have a rails app and directory structure like this: ``` ./app/assets/app/modules.js ./app/assets/app/routes.js ./app/assets/app/* ./app/assets/pages/* ./app/assets/partials/* ./app/assets/layouts/* ./gulpfile.babel.js ./.babelrc ./.gitignore etc. ``` I will writing `import { ngApp }...

I have a following include in my C source file (of a kernel module) ``` #include ``` I installed `open-this`, bound the ctrl+k sequence: ``` 'atom-workspace atom-text-editor:not([mini])': 'ctrl-shift-p': 'open-this:here' ```...