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 |
Tags
- 우분투
- 머클루트
- 노드
- npm
- Sequelize
- 깃허브
- 리액트
- immer
- 벨로포터
- 머클트리
- 환경변수
- 라우터
- 리액트를 다루는 기술
- 시퀄라이즈
- 쉘스크립트
- wsl
- Docker
- 리눅스
- MariaDB
- 솔리디티
- 변수
- node.js 교과서 따라하기
- 설치
- wget
- 전역설치
- centos
- 자바스크립트
- 이더리움
- 일반유저
- 블록체인
Archives
- Today
- Total
코드코코
[자바스크립트] VS CODE에서 console.log 자동완성하기 본문
1. 파일 - 기본설정 - 사용자코드 조각
2. 검색창에서 javascript 검색후 클릭하면 javascript.json 파일이 열린다.
3. javascript.json 파일 내용이 전부 주석 처리되어 있다. 이 중 print to console 부분에 해당하는 것 주석 해제.
- prefix : 자동완성으로 나오게 하고싶은 단축어 지정
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "clg",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
4. 이제 js파일에서 clg만 입력하면 console.log(); 가 자동으로 뜬다!
'기록 > 정리' 카테고리의 다른 글
[리덕스] 리덕스 3가지 규칙 (0) | 2021.10.31 |
---|---|
[VS CODE] 터미널 기본값 cmd 로 바꾸기 (0) | 2021.10.29 |
[리액트] styled-components (0) | 2021.10.26 |
[리액트] CSS module (0) | 2021.10.26 |
[리액트] Sass(Syntactically Awesome Style Sheets) (0) | 2021.10.26 |