Skip to content

Commit

Permalink
fix: eclipse-jdt-ls member autocompletion work
Browse files Browse the repository at this point in the history
Pressing a dot after typing an instance variable in a Java method body
to see its members and other definitions as suggestions is not working
currently in eclipse-jdt-ls for Java.

While this is working for imports, methods do not get resolved. This
commit replaces a suspicious dot that may be related to this, which
causes the issue to get fixed.
  • Loading branch information
danirod authored and mattn committed Mar 14, 2024
1 parent 1976bac commit b93c195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@
"java"
],
"config": {
"refresh_pattern": "\\([.a-zA-Z0-9_-]\\+\\|/\\|\\k\\+\\)$"
"refresh_pattern": "\\([a-zA-Z0-9_-]\\+\\|/\\|\\k\\+\\)$"
},
"root_uri_patterns": [
"pom.xml",
Expand Down

0 comments on commit b93c195

Please sign in to comment.