win 10 환경 에서 vscode Linux C++개발 코드 자동 알림 설정(WSL 기반)
3815 단어 vscodeC++코드 자동 알림
win 10 에서 Liux 서브 시스템 설정(구체 적 인 검색 튜 토리 얼)을 열 고 응용 상점 에 ubutu 16 을 설치 합 니 다.
File->Preferences->settings 를 열 고 settings.json 을 편집 합 니 다.
copy 아래 내용 교체 settings.json
{
"C_Cpp.autocomplete": "Default",
"C_Cpp.updateChannel": "Insiders",
"C_Cpp.default.intelliSenseMode": "gcc-x64",
"C_Cpp.default.cppStandard": "c++11",
"files.autoSave": "afterDelay",
"C_Cpp.default.includePath": [
"/usr/local/include",
"${workspaceFolder}",
],
"C_Cpp.default.cStandard": "c99",
"cmake.configureOnOpen": false,
"[cpp]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "ms-vscode.cpptools",
"editor.quickSuggestions": true
},
"gitlens.gitCommands.closeOnFocusOut": true,
"C_Cpp.commentContinuationPatterns": [
"/**"
],
"C_Cpp.default.compilerPath": "/usr/bin/g++",
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "on",
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
"editor.tabCompletion": "on",
// Controls whether sorting favours words that appear close to the cursor
"editor.suggest.localityBonus": true,
// Controls how suggestions are pre-selected when showing the suggest list
"editor.suggestSelection": "recentlyUsed",
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
"editor.minimap.maxColumn": 40,
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?・~!¥…()―【】、;:‘'“”,。《》? ",
// Enable parameter hints
"editor.parameterHints.enabled": true,
"files.autoGuessEncoding": true,
}
win 10 환경 에서 vscode Linux C++개발 코드 자동 알림 설정(WSL 기반)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 vscode C++코드 자동 알림 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
React Typescript 스니펫새로운 구성 요소를 생성할 때 동일한 코드를 입력하는 데 지쳤다면 VS Code가 제공하는 멋진 솔루션인 코드 스니펫 🔥이 있습니다. 다음은 Typescript로 React 구성 요소를 만들기 위한 두 가지 스니펫입...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.