-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more languages #9
Comments
Request for Ruby and Erlang |
The Erlang parser has a different way of working with arguments, for example some code I ran the parser on produced this:
Effectively, I need to match on each individual argument. Since the existing code does not support this, it will take a bit longer. |
I have added Ruby support. |
Request for javascriptreact and typescriptreact. Thanks. |
I played around with JSX/TSX parsers and it seems like there are some weird bugs, with nonexistent elements/text etc. I'm just gonna have them inherit from JS/TS. |
Request for Java support please |
@strogiyotec Added in #23! Please test it and let me know if you would like anything else. |
@mizlan it;s working , thanks |
request for rescript too. I though about a fallback support that can naively swap stuff between parenthesis, so on.. but I guess using |
Could you elaborate on the parentheses bit with a code example?
…On Wed, Sep 15, 2021 at 5:46 AM Martin Kinoo ***@***.***> wrote:
request for rescript too. I though about a fallback support that can
naively swap stuff between parenthesis, so on.. but I guess using vim-swap
as a fallback is ok.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKSBU2NJXM5WJGGOKTHR5CTUCCIUFANCNFSM457K7URA>
.
|
Request for vue |
@papitz Could you provide an example vuescript file please? The file should contain the syntactical constructs for which you want to add support. I'm unfamiliar with the language, but if I have a file, I can make a good guess as to how to implement it. |
@mizlan Vue is basically just html, css and JavaScript in one file. So you would just need to combine those three so they could work in one file (if that's possible). The html part is in a |
Amazing neovim plugin, thank you! Support for scala3 would be stellar 🌟 EDIT: PR opened |
Either add on to existing queries or add support for new languages. Relevant queries can be found using playground. See existing queries for examples (Rust is a good example).
The text was updated successfully, but these errors were encountered: