2016-08-08 10 views

答えて

22

のIntelliSenseの提案はeditor.quickSuggestionseditor.acceptSuggestionOnEntereditor.suggestOnTriggerCharacterssettingsを使用して、globally or per each workspace1.9 per file-type (language)のように構成することができます。

// Controls if quick suggestions should show up or not while typing 
"editor.quickSuggestions": true, 

(1.9リリースのように、好ましい)ファイルタイプ設定

Markdownを選択し、F1を押してCommand Paletteを開き、Configure language specific settingsコマンドを実行します。あなたはこれらの設定を置くことができる場所 新しいエディタペインが開きます:

// Place your settings in this file to overwrite the default settings 
{ 
    "[markdown]": { 
    "editor.quickSuggestions": false 
    } 
} 

だけ値下げファイル用のIntelliSenseを無効にします。この道を。 F1、タイプopen user settingsを押して

グローバル

オープンCommand PaletteをEnterキーを押します。あなたはこれらの設定を置くことができる場所新しいエディタペインが開きます:

// Place your settings in this file to overwrite the default settings 
{ 
    "editor.quickSuggestions": false 
} 

ワークスペース

Workspace settingsはあなたの他のVSのコードプロジェクトにそれらを適用せずにカスタム設定を行うことができます。ワークスペース設定ファイルは、プロジェクト内の.vscodeフォルダの下にあります。 F1、タイプopen workspace settingsを押しを入力しを押して

オープンCommand Palette。上記のようにスナップされた新しいエディタペインが開きます。

現在、選択したファイルタイプに設定を関連付けることが可能かどうかはわかりません。 editor.quickSuggestions他のいくつかのオプションに加えて

を設定するには、

その他のオプションには、さらにインテリセンスがどのように機能するかをカスタマイズするために変更することができます。

// Controls if quick suggestions should show up while typing 
"editor.quickSuggestions": false, 

// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions. 
"editor.acceptSuggestionOnEnter": false, 

// Controls the delay in ms after which quick suggestions will show up. 
"editor.quickSuggestionsDelay": 10, 

// Enable word based suggestions 
"editor.wordBasedSuggestions": false, 

// Controls if the editor should automatically close brackets after opening them 
"editor.autoClosingBrackets": false, 

// Controls if suggestions should automatically show up when typing trigger characters 
"editor.suggestOnTriggerCharacters": false 
+0

悲しいことに、プレーンテキスト '.txt'は、言語とみなされていない、明示的にするために... –

+0

オートコンプリートをオフにするためにインテリセンスを無効にするには、お探しの方のために:すべて一緒

は、ここで私が使用しているものです '' [plaintext] ':{ "editor.quickSuggestions":false } ' – MrDustpan

4

を@JakubSが言ったことに加えて、二人はもっとありますIntelliSenseを削除するのに役立つ設定:

// Controls if the editor should automatically close brackets after opening them 
"editor.autoClosingBrackets": false, 

// Controls if suggestions should automatically show up when typing trigger characters 
"editor.suggestOnTriggerCharacters": false, 

editor.autoClosingBracketsオプションはeditor.suggestOnTriggerCharactersオプションは、ドル記号やドットを入力すると表示され、オートコンプリートウィンドウを停止します

など、自動的に閉じ括弧、ブラケット、ブレース、単一引用符、二重引用符を挿入からVisual Studioのコードを停止します。

// Controls if quick suggestions should show up while typing 
"editor.quickSuggestions": false, 

// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions. 
"editor.acceptSuggestionOnEnter": false, 

// Controls the delay in ms after which quick suggestions will show up. 
"editor.quickSuggestionsDelay": 10, 

// Enable word based suggestions 
"editor.wordBasedSuggestions": false, 

// Controls if the editor should automatically close brackets after opening them 
"editor.autoClosingBrackets": false, 

// Controls if suggestions should automatically show up when typing trigger characters 
"editor.suggestOnTriggerCharacters": false 
+0

私はトリガー文字が言語固有のものかもしれないと思います。ドットは間違いなくPythonのトリガー文字であり、すべての言語ではないにしてもほとんどの場合です。しかし、ドル記号(Pythonで)を入力すると、「editor.suggestOnTriggerCharacters:true」があっても何も起こりません。 –

関連する問題