Skip to content

Commit 831b560

Browse files
committed
change default value of setting filterDefaultLanguage to false
1 parent 08da770 commit 831b560

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@
550550
},
551551
"robotcode.completion.filterDefaultLanguage": {
552552
"type": "boolean",
553-
"default": true,
553+
"default": false,
554554
"markdownDescription": "Filter default language (English) for completion if there is another language defined.",
555555
"scope": "resource"
556556
},

robotcode/language_server/robotframework/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_rpa_mode(self) -> Optional[bool]:
4848
@config_section("robotcode.completion")
4949
@dataclass
5050
class CompletionConfig(ConfigBase):
51-
filter_default_language: bool = True
51+
filter_default_language: bool = False
5252
header_style: Optional[str] = None
5353

5454

0 commit comments

Comments
 (0)