-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Tree sitter support for csharp mode #204
Conversation
This mode is small now :D This is not on MELPA yet, so use with caution and install manually. https://codeberg.org/FelipeLema/tree-sitter-indent.el Also note that I opened: https://codeberg.org/FelipeLema/tree-sitter-indent.el/issues/1
Easier to debug without them, also more indentation and highlights
Contribute upstream anyways
Behind csharp-mode-enable-tree-sitter flag
Its own file? Yeah, can do that! But ci still needs that dependency, doesnt it? |
AAAAAND green :) |
@josteink Objections to me merging this? |
Give me a day or so to review first, please. It's a big one 😃 |
Absolutely :) |
Having some issues with getting the feature toggle correct. CC Mode is so invasive, so need to think a little about this :) |
cc38d33
to
e4cea41
Compare
e4cea41
to
53fa8f1
Compare
Now they are separate major modes - |
I can take a look at what's here now anyway. There's always things to improve, even if there are more changes coming later :) |
Great! The feature switching works now, so should be easy to switch between them at least 👍 |
d92f243
to
4d64f0f
Compare
4d64f0f
to
1e37eaf
Compare
Pr is significantly smaller now, since we can rely on tree-sitter being in MELPA now - thanks @FelipeLema! |
Would it be better if (add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-mode)) ; this?
(add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-tree-sitter-mode)) ; or this? Anyway, thanks for the hard work. I very appreciated this support! ;) |
I see your point and am willing to think about this - however, I think we should just get it out there to see what sticks. Right now I think I didn’t add it to auto-mode, to not override default behavior. Also, I hope we can ditch cc mode altogether some time. I’d be willing to take a look at a suggestion, if you want to add one though:) |
I think that given how this no longer affects |
No problem on my end. I'm curious about future tree-sitter *BSD support, but in its current state, this PR does no harm 🙂 |
Yeah I know. I think either we add instructions for how to compile everything for *BSD, or make sure I'll also bump a new version to melpa stable |
Adding support for tree sitter!
Some notes:
csharp-mode-enable-tree-sitter
Edit:
BTW - tried indenting a file with 2k lines with all lines set to column 0. Almost instantly with tree-sitter, 3-4 secs with cc mode. Yay!