vim-node
vim-node copied to clipboard
Tools and environment to make Vim superb for developing with Node.js. Like Rails.vim for Node.
I'm not sure how they do it, but in golang-vim, you can hover over a function call, type "gd", and it will take you to the file and line of...
It's pretty plugin, and how should I use it work with ts? It's just like > Use `gf` on paths or requires to open the same file Typescript would.
Proposed changes: - Use the [node.js module resolution algorithm](https://nodejs.org/api/modules.html#modules_all_together) - Add support for $NODE_PATH - Add support for configurable `g:vim_node#node_path` variable - Add .editorconfig to prevent mixed indentation So if...
I think when we pressing `gf` on a `'somePath'` which is a directory itself and contains `'index.js'` file, which in turn contains only one line like `export { default }...
Hi there, I have recently switched one of my Node package to a “monorepo” structure, and noticed “gf” stopped working when trying to open modules contained within the monorepo. Turned...
This will fix #35 `gf` on import will go to the node_modules `[I` will also show node_modules
First of all, thanks for sharing this nice plugin! When issuing Ctrl+p/n or [+I on some files (which ends with .js) I get the following error: E121: Undefined variable: b:node_root...
I began to implement a react-native support. React-native allow to import files with absolute path [using the name of package.json](https://medium.com/@davidjwoody/how-to-use-absolute-paths-in-react-native-6b06ae3f65d1) (with a babel preset I guess) I implemented only for...