IT/TOY Project
[TOY] VScode Extension 만들기(3) - Extension Manifest
올빼밋.
2022. 6. 21. 14:03
728x90
명령 팔레트에서 Hello World가 아닌, toDoList로 검색하도록 변경하기
1. package.json 파일 찾기
2. Activation Events 과 Contribution Points 수정
- activationEvents: [onCommand : ...] 명령이 호출될 때마다 해당 확장이 활성화된다.
- contributes: [commands: [{comman : ...}]] 명령 팔레트에서 명령이 호출되면, activationEvents: [onCommand: ...] 를 호출한다.
- contributes: [commands: [{title : ...}]] 카테고리에 사용되는 표제
3. extension.js 파일 수정
4. 명령팔레트에서 실행 및 확인
참고 사이트 : https://code.visualstudio.com/api/get-started/extension-anatomy
728x90