Post

VSCODE 자동완성 끄기

1. Ctrl+, 

2. intellisense 검색. 보이는 모든 체크 박스 해제

3. 귀찮다면 설정 json 파일 열기 (문서에 빙그르르 돌아가는 화살표)에다가 아래코드 붙여넣기

  "explorer.compactFolders": false,
    "explorer.confirmDragAndDrop": false,
    "editor.suggest.showConstants": false,
    "editor.suggest.showConstructors": false,
    "editor.suggest.showCustomcolors": false,
    "editor.suggest.showDeprecated": false,
    "editor.suggest.showEnumMembers": false,
    "editor.suggest.showEnums": false,
    "editor.suggest.showEvents": false,
    "editor.suggest.showFields": false,
    "editor.suggest.showFiles": false,
    "editor.suggest.showFolders": false,
    "editor.suggest.showFunctions": false,
    "editor.suggest.showInterfaces": false,
    "editor.suggest.showIssues": false,
    "editor.suggest.showKeywords": false,
    "editor.suggest.showMethods": false,
    "editor.suggest.showModules": false,
    "editor.suggest.showOperators": false,
    "editor.suggest.showProperties": false,
    "editor.suggest.showReferences": false,
    "editor.suggest.showSnippets": false,
    "editor.suggest.showStructs": false,
    "editor.suggest.showTypeParameters": false,
    "editor.suggest.showUnits": false,
    "editor.suggest.showUsers": false,
    "editor.suggest.showValues": false,
    "editor.suggest.showVariables": false,
    "editor.suggest.showWords": false,
    "editor.suggest.showClasses": false,
    "editor.suggest.showColors": false

 

Post

    "editor.tokenColorCustomizations": {
        "comments": "#91ffde",
        "strings": "#ff6730",

        "textMateRules": [
            {
              "scope": "punctuation.definition.heading.markdown",
              "settings": {
                "foreground": "#FFA500"
              }
            },
            {
              "scope": "markup.heading.markdown",
              "settings": {
                "foreground": "#FFA500",
                "fontStyle": "bold"
              }
            },
            {
              "scope": "markup.bold",
              "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
              }
            }
          ]
    }

f1 누르고 setting.json 검색. 두개 나오는데 open user setting.json 을 선택한다
java코드일 때 주석과 "다음에 말 색상 변경("comments", "strings")
markdown일 때 ###와 **의 색상변경

또 아래는 배경 색 변경하는 법!

나는 옅은 초록색으로 변경했다!! 대신 주석 색을 진한 초록색으로 변경하고!

   "workbench.colorCustomizations": {

      "editorError.foreground":   "#00000000",
      "editorWarning.foreground": "#00000000",
      "editorInfo.foreground":    "#00000000",

       // vscdoe 전체 전경 색
    "editor.background": "#e8f3f8"
  },
 
 

Post

ctrl+(플러스)로 setting.json을 연 다음 글자는 string으로 글자색 변경가능
주석은 comments임.

"editor.tokenColorCustomizations": {
        "comments": "#91ffde"
        "strings": "#ff6730"
}

▲ top