Skip to content

Commit

Permalink
Set workspace.rojoProjectFile to empty by default
Browse files Browse the repository at this point in the history
  • Loading branch information
NightrainsRbx committed Mar 21, 2022
1 parent 54d6335 commit c06feb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@
"type": "boolean"
},
"robloxLsp.workspace.rojoProjectFile": {
"default": "default",
"default": "",
"markdownDescription": "%config.workspace.rojoProjectFile%",
"scope": "resource",
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"config.hover.viewStringMax": "The maximum length of a hover to view the contents of a string.",
"config.intelliSense.searchDepth": "Set the search depth for IntelliSense. Increasing this value increases accuracy, but decreases performance. Different workspace have different tolerance for this setting. Please adjust it to the appropriate value.",
"config.intelliSense.autoDetectLibraries": "Auto-detect third party libraries like Roact and infer custom types.",
"config.workspace.rojoProjectFile": "The name of the .project.json file without the extension.",
"config.workspace.rojoProjectFile": "The name of the .project.json file without the extension. Set it empty to use all files found.",
"config.workspace.loadMode": "What files should be preloaded.",
"config.workspace.loadMode.allFiles": "Load all files in workspace.",
"config.workspace.loadMode.rojoProject": "Load all files found in Rojo Project.",
Expand Down
2 changes: 1 addition & 1 deletion server/script/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ local ConfigTemplate = {
workspace = {
ignoreDir = {{".vscode", "**/_Index/**"}, Str2Hash ';'},
ignoreSubmodules = {true, Boolean},
rojoProjectFile = {"default", String},
rojoProjectFile = {"", String},
loadMode = {'All Files', String},
useGitIgnore = {true, Boolean},
useFilesExclude = {true, Boolean},
Expand Down

0 comments on commit c06feb7

Please sign in to comment.