Disable annoying placeholders in java completions and add ignored
imports to avoid spam
This commit is contained in:
@@ -53,6 +53,23 @@ return {
|
||||
errors = {
|
||||
incompleteClasspath = 'warning',
|
||||
},
|
||||
completion = {
|
||||
-- Stops jdtls from injecting variable placeholders when autocompleting
|
||||
guessMethodArguments = 'off',
|
||||
|
||||
filteredTypes = {
|
||||
'edu.umd.cs.findbugs.*',
|
||||
'javax.annotation.*',
|
||||
'org.checkerframework.*',
|
||||
'org.eclipse.sisu.*',
|
||||
-- 'org.jetbrains.annotations.*',
|
||||
'org.sonatype.inject.*',
|
||||
'java.awt.*',
|
||||
'com.sun.*',
|
||||
'sun.*',
|
||||
'jdk.*',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user