"vscode"에 해당되는 글 - 3건
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
'이전게시판 > etc' 카테고리의 다른 글
파일 형식 또는 파일 확장명이 잘못되어 파일을 열 수 없습니다. 파일이 손상되지 않았는지 파일 확장명이 파일 형식과 일치하는지 확인하십시오 (0) | 2024.12.16 |
---|---|
크롬에서 jfif확장자 png나 jpg로 저장하기(jfif to png) (0) | 2024.07.07 |
알리 익스프레스 매크로 키보드 설정 에러 Unhandled exception has occurred in your application (0) | 2024.05.31 |
오랜만에 듀오링고 했는데 개 재밌네ㅠㅠ (0) | 2023.08.11 |
PYTHON ModuleNotFoundError: No module named 'bs4' (0) | 2023.04.09 |
VSCODE 글자 색상 변경 (0) | 2023.02.21 |
VSCODE 글자색 변경 (0) | 2023.02.20 |
요즈맞꾸 새벽에 자서 오후에 일어나네 (0) | 2022.12.29 |
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": {
'이전게시판 > etc' 카테고리의 다른 글
VSCODE 자동완성 끄기 (0) | 2024.07.05 |
---|---|
알리 익스프레스 매크로 키보드 설정 에러 Unhandled exception has occurred in your application (0) | 2024.05.31 |
오랜만에 듀오링고 했는데 개 재밌네ㅠㅠ (0) | 2023.08.11 |
PYTHON ModuleNotFoundError: No module named 'bs4' (0) | 2023.04.09 |
VSCODE 글자색 변경 (0) | 2023.02.20 |
요즈맞꾸 새벽에 자서 오후에 일어나네 (0) | 2022.12.29 |
puppeteer 실행안됨 (0) | 2022.12.18 |
2019년 정보처리기사 실기 2회 후기 (0) | 2019.06.29 |
Post
ctrl+(플러스)로 setting.json을 연 다음 글자는 string으로 글자색 변경가능
주석은 comments임.
"editor.tokenColorCustomizations": {
"comments": "#91ffde"
"strings": "#ff6730"
}
'이전게시판 > etc' 카테고리의 다른 글
알리 익스프레스 매크로 키보드 설정 에러 Unhandled exception has occurred in your application (0) | 2024.05.31 |
---|---|
오랜만에 듀오링고 했는데 개 재밌네ㅠㅠ (0) | 2023.08.11 |
PYTHON ModuleNotFoundError: No module named 'bs4' (0) | 2023.04.09 |
VSCODE 글자 색상 변경 (0) | 2023.02.21 |
요즈맞꾸 새벽에 자서 오후에 일어나네 (0) | 2022.12.29 |
puppeteer 실행안됨 (0) | 2022.12.18 |
2019년 정보처리기사 실기 2회 후기 (0) | 2019.06.29 |
HTML 문법 기초 및 Git 호스팅 예제 (0) | 2018.10.06 |