mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 17:36:19 +04:00
add java highlighting (#448)
This commit is contained in:
parent
86209c93a3
commit
b239f0f45f
@ -197,6 +197,14 @@ comment-token = "#"
|
|||||||
language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] }
|
language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] }
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "java"
|
||||||
|
scope = "source.java"
|
||||||
|
injection-regex = "java"
|
||||||
|
file-types = ["java"]
|
||||||
|
roots = []
|
||||||
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
# [[language]]
|
# [[language]]
|
||||||
# name = "haskell"
|
# name = "haskell"
|
||||||
# scope = "source.haskell"
|
# scope = "source.haskell"
|
||||||
|
129
runtime/queries/java/highlights.scm
Normal file
129
runtime/queries/java/highlights.scm
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
; Methods
|
||||||
|
|
||||||
|
(method_declaration
|
||||||
|
name: (identifier) @function.method)
|
||||||
|
(method_invocation
|
||||||
|
name: (identifier) @function.method)
|
||||||
|
(super) @function.builtin
|
||||||
|
|
||||||
|
; Annotations
|
||||||
|
|
||||||
|
(annotation
|
||||||
|
name: (identifier) @attribute)
|
||||||
|
(marker_annotation
|
||||||
|
name: (identifier) @attribute)
|
||||||
|
|
||||||
|
"@" @operator
|
||||||
|
|
||||||
|
; Types
|
||||||
|
|
||||||
|
(interface_declaration
|
||||||
|
name: (identifier) @type)
|
||||||
|
(class_declaration
|
||||||
|
name: (identifier) @type)
|
||||||
|
(enum_declaration
|
||||||
|
name: (identifier) @type)
|
||||||
|
|
||||||
|
((field_access
|
||||||
|
object: (identifier) @type)
|
||||||
|
(#match? @type "^[A-Z]"))
|
||||||
|
((scoped_identifier
|
||||||
|
scope: (identifier) @type)
|
||||||
|
(#match? @type "^[A-Z]"))
|
||||||
|
|
||||||
|
(constructor_declaration
|
||||||
|
name: (identifier) @type)
|
||||||
|
|
||||||
|
(type_identifier) @type
|
||||||
|
|
||||||
|
[
|
||||||
|
(boolean_type)
|
||||||
|
(integral_type)
|
||||||
|
(floating_point_type)
|
||||||
|
(floating_point_type)
|
||||||
|
(void_type)
|
||||||
|
] @type.builtin
|
||||||
|
|
||||||
|
; Variables
|
||||||
|
|
||||||
|
((identifier) @constant
|
||||||
|
(#match? @constant "^_*[A-Z][A-Z\d_]+"))
|
||||||
|
|
||||||
|
(identifier) @variable
|
||||||
|
|
||||||
|
(this) @variable.builtin
|
||||||
|
|
||||||
|
; Literals
|
||||||
|
|
||||||
|
[
|
||||||
|
(hex_integer_literal)
|
||||||
|
(decimal_integer_literal)
|
||||||
|
(octal_integer_literal)
|
||||||
|
(decimal_floating_point_literal)
|
||||||
|
(hex_floating_point_literal)
|
||||||
|
] @number
|
||||||
|
|
||||||
|
[
|
||||||
|
(character_literal)
|
||||||
|
(string_literal)
|
||||||
|
] @string
|
||||||
|
|
||||||
|
[
|
||||||
|
(true)
|
||||||
|
(false)
|
||||||
|
(null_literal)
|
||||||
|
] @constant.builtin
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
; Keywords
|
||||||
|
|
||||||
|
[
|
||||||
|
"abstract"
|
||||||
|
"assert"
|
||||||
|
"break"
|
||||||
|
"case"
|
||||||
|
"catch"
|
||||||
|
"class"
|
||||||
|
"continue"
|
||||||
|
"default"
|
||||||
|
"do"
|
||||||
|
"else"
|
||||||
|
"enum"
|
||||||
|
"exports"
|
||||||
|
"extends"
|
||||||
|
"final"
|
||||||
|
"finally"
|
||||||
|
"for"
|
||||||
|
"if"
|
||||||
|
"implements"
|
||||||
|
"import"
|
||||||
|
"instanceof"
|
||||||
|
"interface"
|
||||||
|
"module"
|
||||||
|
"native"
|
||||||
|
"new"
|
||||||
|
"open"
|
||||||
|
"opens"
|
||||||
|
"package"
|
||||||
|
"private"
|
||||||
|
"protected"
|
||||||
|
"provides"
|
||||||
|
"public"
|
||||||
|
"requires"
|
||||||
|
"return"
|
||||||
|
"static"
|
||||||
|
"strictfp"
|
||||||
|
"switch"
|
||||||
|
"synchronized"
|
||||||
|
"throw"
|
||||||
|
"throws"
|
||||||
|
"to"
|
||||||
|
"transient"
|
||||||
|
"transitive"
|
||||||
|
"try"
|
||||||
|
"uses"
|
||||||
|
"volatile"
|
||||||
|
"while"
|
||||||
|
"with"
|
||||||
|
] @keyword
|
Loading…
Reference in New Issue
Block a user