Skip to content

Commit

Permalink
add note: turn off vs code suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
raevilman committed Oct 21, 2022
1 parent 37e9e2d commit cd68cc1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions notes/setup/vscode/turn-suggestions-off.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: 'Turn off VSCode suggestions'
description: 'Steps to turn off VSCode suggestions so that they only show up when you press ctrl+space'
slug: '/turn-off-vscode-suggestions'
date_created: '2022-10-12'
date_modified: '2022-10-12'
author: 'RD'
is_published: true
show_in_recent: true
is_project: false
tags: vscode, suggestions, intellisense
---

Settings to turn off VSCode suggestions so that they only show up when you press ctrl+space

```
"editor.suggestOnTriggerCharacters": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
```

0 comments on commit cd68cc1

Please sign in to comment.