Rahul Gupta
Rahul Gupta
@Tibfib Thank you for the review & the instructions. I'll try & take up the suggestions later in the day & push them.
@Tibfib Pushed the changes suggested & the test is working fine now. While doing this I also realized that I'll need checks to make this work for 'require' type imports...
@Tibfib Understood, so the sole purpose of that function is to find unassigned imports. My question was just around to understand, how can I make sure that this new option...
@hyoretsu I got a little occupied with my work, I'll probably be able to resume this sometime by the end of this week.
Spent some time on this today. Somewhere I'm having a hard time figuring out is: Why does the implementation for `isStaticRequire` & `isPlainRequireModule` differs. As far as I can understand...
@Koxiaet @ug02fast I just upgraded the library & facing the same issue here because typescript-vim expects the filetype to be `typescript` Refer: https://github.com/leafgarland/typescript-vim/blob/master/ftdetect/typescript.vim#L4 while this library expects it to be...
So the thing is VIM & Neovim's latest version has by default added types of `typescriptreact` & `javascriptreact` for '.tsx' & '.jsx'. So I realised that the change this library...
This is the base `~/.tern-config` I'm using for my VIM. ```JSON { "libs": [ "browser", "jquery", "react" ], "plugins": { "angular": {}, "doc_comment": null, "es_modules": {}, "node": {} }, "dontLoad":...
I've faced this countless times, this is how you can reproduce: ```js function() { const x = { }; ``` Copy paste this code & go back to normal mode...
@prog666 delimitMate handles it really well, but it has bugs of itself (UI bug that i faced). I would rather prefer it to get fixed in this library as everything...