Skip to content

Commit d69d7dc

Browse files
authored
Merge pull request #217 from jcreedcmu/jcreed/autocomplete
Default to disabling word based auto-complete when editing QL.
2 parents e7e78fd + 2679e9a commit d69d7dc

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 1.0.4
44

5+
- Disable word-based autocomplete by default.
6+
57
## 1.0.3 - 13 January 2020
68

79
- Reduce the frequency of CodeQL CLI update checks to help avoid hitting GitHub API limits of 60 requests per

extensions/ql-vscode/package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@
3939
"language-configuration.json"
4040
],
4141
"contributes": {
42+
"configurationDefaults": {
43+
"[ql]": {
44+
"editor.wordBasedSuggestions": false
45+
},
46+
"[dbscheme]": {
47+
"editor.wordBasedSuggestions": false
48+
}
49+
},
4250
"languages": [
4351
{
4452
"id": "ql",

0 commit comments

Comments
 (0)