주석내 경고, 정보, TODO 등의 주석을 색을 이용하여 표현해줍니다.
링크 : https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments
기본 설정
멀티 라인을 지원할지 설정합니다.
"better-comments.multilineComments": true
일반 텍스트 주석을 지원할지 설정합니다.
"better-comments.highlightPlainText": false
표현할 주석을 설정 하거나 추가할 수 있습니다.
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
]
지원언어
- Ada
- AL
- C
- C#
- C++
- Clojure
- COBOL
- CoffeeScript
- CSS
- Dart
- Dockerfile
- Elixir
- Erlang
- F#
- Go
- GraphQL
- Groovy
- Haskell
- Haxe
- HiveQL
- Java
- JavaScript
- JavaScript React
- JSON with comments
- Julia
- Kotlin
- LaTex
- Less
- Lisp
- Lua
- Makefile
- Nim
- MATLAB
- Objective-C
- Objective-C++
- Pascal
- Perl
- Perl 6
- PHP
- Pig
- PL/SQL
- PowerShell
- Python
- R
- Racket
- Ruby
- Rust
- Sass
- Scala
- SCSS
- ShaderLab
- ShellScript
- SQL
- Swift
- Terraform
- TypeScript
- TypeScript React
- Visual Basic
- Vue.js
- YAML
'생산성' 카테고리의 다른 글
Path Intellisense - 디렉토리 / 파일명 자동완성 (0) | 2018.09.12 |
---|---|
Indenticator - 들여쓰기를 시각적으로 강조 (0) | 2018.09.08 |
Active File In Status Bar - 상태바에 파일의 전체경로 표시 (0) | 2018.08.17 |
Indent-Rainbow - 들여 쓰기를 색상으로 표시 (0) | 2018.08.15 |
Auto Rename Tag - 태그의 이름을 자동으로 바꿈 (0) | 2018.08.12 |