completion.scm
1 ;; ═════════════════════════════════════════════════════════════════════════ 2 ;; Java Completion Context Queries 3 ;; ═════════════════════════════════════════════════════════════════════════ 4 5 ;; ─────────────────────────────────────────────────────────────────────────── 6 ;; System.getenv(" - trigger completion inside getenv call 7 ;; ─────────────────────────────────────────────────────────────────────────── 8 (method_invocation 9 object: (identifier) @object 10 name: (identifier) @_method 11 arguments: (argument_list 12 (string_literal) @completion_target) 13 (#eq? @object "System") 14 (#eq? @_method "getenv")) @completion_call