Merged
Conversation
2137536 to
11d4035
Compare
Contributor
Author
|
I'm not quite sure how to translate the neovim indents to helix, e.g. the ((list) @indent.align
(#set! indent.open_delimiter "[")
(#set! indent.close_delimiter "]")) |
Member
|
See https://docs.helix-editor.com/master/guides/indent.html The python indents can also be used as a reference. We could start with no indents and add them later, too |
4592c94 to
c8d88e0
Compare
Comment on lines
83
to
92
| ] @boolean | ||
|
|
||
| [ | ||
| (integer) | ||
| (float) | ||
| ] @number | ||
|
|
||
| (comment) @comment | ||
| (string) @string | ||
| (escape_sequence) @escape |
Member
There was a problem hiding this comment.
Some of the captures here need to be adapted to the ones that Helix uses, see https://docs.helix-editor.com/master/themes.html#syntax-highlighting
For example boolean should become constant.builtin.boolean, escape should become constant.character.escape
120d605 to
f7741f9
Compare
f7741f9 to
3f64704
Compare
* property -> variable.other.member in highlights.scm * add definition highlight capture to local.definition in locals.scm
the-mikedavis
approved these changes
Aug 31, 2025
kfatyuip
pushed a commit
to kfatyuip/helix
that referenced
this pull request
Nov 21, 2025
tomgroenwoldt
pushed a commit
to tomgroenwoldt/helix
that referenced
this pull request
Jan 15, 2026
Eucladia
pushed a commit
to Eucladia/helix
that referenced
this pull request
Jan 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
add support for cython