Visual Studio Code에서 도구 설명 힌트 비활성화
VSCode에서 기본 도구 설명 힌트 메시지를 비활성화하려면 어떻게해야합니까? 때때로 짜증이납니다.
editor.hover.enabled: false
settings.json에서 도구 설명으로
settings.json에서 편집을 클릭하십시오.
두 개의 창이 있습니다
기본 사용자 설정
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
사용자 설정
"editor.parameterHints.enabled": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"html.suggest.html5": false,
"editor.snippetSuggestions": "none",
이것은 또한 UI를 수행 할 수 있습니다.
스 니펫 제안 설정 : false
2018 년 8 월 업데이트 (버전 1.27)
이동 File=>Preference=>Settings
Text Editor => Suggestions
settings.json에서 편집을 클릭하십시오.
"editor.parameterHints.enabled": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"html.suggest.html5": false,
제안 옵션을 업데이트하고 저장하십시오.
2018 년 8 월 이전
이동 File=>Preference=>User Settings
당신은 발견 할 것이다 settings.json
// Configures if the built-in HTML language support suggests Angular tags and properties.
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"html.suggest.html5": false,
언어를 찾고 설정하기 만하면됩니다. suggest = false
최신 정보
모든 팝업을 끄도록 설정
"editor.parameterHints": false
방금 추가 할 수 있습니다 그 힌트를 숨기려면 "editor.parameterHints": false
당신에를 settings.json
. 여기 에서 답 을 찾았습니다 .
"editor.hover.enabled": false,
방탄 솔루션입니다. 그런 다음 CTLR + K, CTLR + I를 사용할 수 있습니다.
버전 1.27.2에서이 매개 변수 만 모든 툴팁을 비활성화하는 것으로 나타났습니다 : "editor.hover.enabled": false
.
I find using a larger value for Editor > Hover: Delay (search for "delay" in the settings search bar) does the trick for me. Its default is 300ms. This doesn't address the desire to actually eliminate the tooltips, but having them only appear after, say, 2 seconds, reduces the visual clutter quite a bit for me.
Here's the noob version, assuming you know little about VS Code (like me).
Windows. VS Code version: 1.37.1
- While in VS Code:
press F1 then type "settings" or "preferences" - then click "Preferences: Open User Settings"
- or -
from top menu: File>Preferences>Settings
- or -
hotkey: ctrl+, - in the settings pane, type "hover" (no need to press "enter")
- the settings pane should display the hover settings immediately
- Uncheck "Editor › Hover: Enabled"
hover disable
Rockstar Version: edit the JSON like a balla
- F1 then type "Open Settings (JSON)"
-or-
navigate to settings JSON file and open in VS Code
https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations - Add this to JSON file (within curly braces, INCLUDE quotes): "editor.hover.enabled": false
Note: each line needs a comma after it. If you add to top, put a comma after this line. If you add to bottom, add a comma after the previous line. - Don't forget to save!
what JSON looks like
코딩을 처음 접하는 경우 이러한 도구 설명이 유용 할 수 있습니다. 대신 Logan이 제안한 것처럼 외모를 지연시키는 것이 좋습니다.
여기를 클릭하십시오 : https://stackoverflow.com/a/53512394/8623576 또는 단순히 위로 스크롤 하십시오 ! :)
참고 : 다른 사람들이 거의 똑같은 답변을 게시 한 것에 감사하지만 앞서 언급했듯이 이것은 사용자가 VS Code에 대한 경험이 거의 / 전혀 없다고 가정하는 NOOB 버전입니다.
여기에 아무도 언급하지 않은 간단한 방법 : 코드 → 환경 설정 → 설정. "hover"를 검색합니다. "Editor> Hover : Enabled"확인란을 선택 취소합니다.
버전 1.31+의 경우이 한 줄이 나를 위해 해주었습니다.
"editor.parameterHints.enabled": false
참고 URL : https://stackoverflow.com/questions/41115285/disable-tooltip-hint-in-visual-studio-code
'Program Tip' 카테고리의 다른 글
단 하나의 명령문으로 Python 목록에서 여러 항목 제거 (0) | 2020.11.04 |
---|---|
bash 변수를 jq select에 전달 (0) | 2020.11.04 |
MySQL의 NULL (성능 및 스토리지) (0) | 2020.11.04 |
'큰 데이터베이스'란 무엇입니까? (0) | 2020.11.04 |
Boost를 사용하여 XML 파일 읽기 및 쓰기 (0) | 2020.11.04 |