win 10 환경 에서 vscode Linux C++개발 코드 자동 알림 설정(WSL 기반)

vs code 를 설치 하고 c/c++플러그 인 C/C++IntelliSense,TabNine,Bracket Pair Colorizer 를 설치 합 니 다.
win 10 에서 Liux 서브 시스템 설정(구체 적 인 검색 튜 토리 얼)을 열 고 응용 상점 에 ubutu 16 을 설치 합 니 다.
File->Preferences->settings 를 열 고 settings.json 을 편집 합 니 다.
copy 아래 내용 교체 settings.json
  • "C_Cpp.default.copilerPath":"/usr/bin/g+"vs code 는 설 치 된 WSL(ubuntu)내부 의 g++컴 파 일 러 를 자동 으로 인식 하고 사용 합 니 다(ubuntu 설치 후 gcc 설치 기억)
  • "C_Cpp.default.intelliSenseMode":"gcc-x64"는 위의 것 과 일치 합 니 다
  • "C_Cpp.default.includePath"에 서 는"/usr/local/include"를 제외 하고 자신의 작업 디 렉 터 리 와 의존 하 는 제3자 디 렉 터 리 를 추가 할 수 있 습 니 다
  • 
    {
     "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++코드 자동 알림 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!

    좋은 웹페이지 즐겨찾기