Не удается отключить предложения в коде Visual Studio - PullRequest
0 голосов
/ 29 октября 2019

Я пытался отключить предложения в VSC, изменив следующее в settings.json, но у меня это не работает. Что я делаю не так?

    // OPTIONAL WORD WRAPPING
    // Controls if lines should wrap. The lines will wrap at min(editor.wrappingColumn, viewportWidthInColumns).
    "editor.wordWrap": "off",

    // Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'.
    "editor.wrappingIndent": "none",

    // TURN OFF AUTOCOMPLETION
    // Controls if quick suggestions should show up or not while typing
    "editor.quickSuggestions": false,

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

    // Enables parameter hints
    "editor.parameterHints": false,

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

    // Controls if the editor should automatically format the line after typing
    "editor.formatOnType": false,

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

    // Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
    "editor.acceptSuggestionOnEnter": "off"
}```

1 Ответ

0 голосов
/ 29 октября 2019

Я просто скопировал, вставил ваши настройки в мой файл settings.json и нажал "Сохранить". Это сработало для меня, нет больше смысла. Вы редактировали файл с помощью VS Code, а затем нажали «сохранить»? Если это не сработало, то, возможно, попробуйте переустановить код и попробуйте снова. Держу пари, что ты не спас. Кроме того, я открыл файл, сначала зайдя в настройки, а затем щелкнув один из вариантов с надписью «изменить в settings.json». Еще одна вещь, которую я должен был сделать, был после того, как я нажал сохранить в настройках. Json Мне также пришлось вернуться в настройки и вручную снять все эти опции:

enter image description here

поиск "предложений"

...