Disable automatic build #119
Answered
by
mfussenegger
minhduc0711
asked this question in
Q&A
-
I saw that the vscode-java extension has the option to disable automatic build upon saving a file (redhat-developer/vscode-java#406 (comment)). |
Beta Was this translation helpful? Give feedback.
Answered by
mfussenegger
Aug 18, 2021
Replies: 1 comment 1 reply
-
Yes. The option is the same. It is for the server, not for the client. You have to add it to the config = {...}
config.settings = {
java = {
autobuild = {
enabled = false
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
minhduc0711
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. The option is the same. It is for the server, not for the client. You have to add it to the
settings
part of yourconfig
: