Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- partitioning
- 실시간알림
- node.js
- EventSource
- 파티셔닝
- Partition
- mariadb
- ServerSentEvent
- SSE
- frontend
- localStorage
- Node.js기본
- node.js란
- 성장기
- 개발자
- 열공하자
- PostgreSQL
- Lag
Archives
- Today
- Total
써치킴의 우당탕탕 개발 블로그
[VS Code] console.log 단축키 추가 본문
JavaScript를 하다보면
console.log() 쓸 일이 정말 많은데
계속 치는 것도 귀찮고 불편하고..
그래서 console.log()를 단축키에 추가해보려고 한다.
1. Code > Preference > User Snippet
2. 스니펫 적용할 언어 입력(javascript)
3. 단축어 셋팅 > 저장
- prfix : 사용할 단축어
- body : 단축어를 쳤을때 나오는 문구
"Print to console": {
"prefix": "cl",
"body": [
"console.log($1);",
],
"description": "Log output to console"
}
4. 내가 설정한 단축어를 입력하면 console.log();가 입력된다.
짱 편하다!
'써치킴의 TMI' 카테고리의 다른 글
[이클립스 플러그인] AnyEdit (0) | 2022.05.19 |
---|---|
WebRTC(Web Real-Time Communication) (0) | 2022.05.16 |
[VS Code] 언어 변경하기 (한국어 → 영어, 영어 → 한국어) (0) | 2022.01.31 |
써치킴의 우당탕탕 개발 블로그 오픈! (0) | 2021.04.06 |
Comments