Skip to content

Commit 7fa12f4

Browse files
committed
Sort when clause for 4SpacesTab
1 parent b4fce6f commit 7fa12f4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ All notable changes to the "robotcode" extension will be documented in this file
77
- Implement API Changes for RobotTidy >= 2.2
88
- fixes [#55](https://github.com/d-biehl/robotcode/issues/55)
99
- Switch to new LSP Protocol Version 3.17 and vscode-languageclient 8.0.0
10+
- Disable 4SpacesTab if [GitHub CoPilot](https://copilot.github.com/) is showing inline suggestions
11+
- Thanks: @Snooz82
1012

1113
## 0.12.0
1214

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
"args": {
200200
"text": " "
201201
},
202-
"when": "!inlineSuggestionVisible && editorTextFocus && editorLangId == robotframework && !editorHasSelection && !inSnippetMode && !suggestWidgetVisible && config.robotcode.editor.4SpacesTab"
202+
"when": "editorLangId == robotframework && editorTextFocus && !editorHasSelection && !inSnippetMode && !suggestWidgetVisible && config.robotcode.editor.4SpacesTab && !inlineSuggestionVisible"
203203
}
204204
],
205205
"configuration": [

0 commit comments

Comments
 (0)