Skip to content

Commit

Permalink
Document import order for static members.
Browse files Browse the repository at this point in the history
- Fixes #711
- Make the default of "" & "#" explicit (change is no-op) so the
  behaviour is understood

Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Sep 22, 2022
1 parent 0015d45 commit 393c44c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -550,12 +550,14 @@
},
"java.completion.importOrder": {
"type": "array",
"description": "Defines the sorting order of import statements. A package or type name prefix (e.g. 'org.eclipse') is a valid entry. An import is always added to the most specific group.",
"description": "Defines the sorting order of import statements. A package or type name prefix (e.g. 'org.eclipse') is a valid entry. An import is always added to the most specific group. As a result, the empty string (e.g. '') can be used to group all other imports. Static imports are prefixed with a '#'",
"default": [
"#",
"java",
"javax",
"org",
"com"
"com",
""
],
"scope": "window"
},
Expand Down

0 comments on commit 393c44c

Please sign in to comment.