VSCode에서 PlantUML Snippet을 만들고 싶다면 diagram.json을 추가하십시오!
4092 단어 VisualStudioCodeplantuml
추가 (2020/10/13)
죄송합니다, 제목은 거짓말입니다. 라고 할까 나의 이해가 좋은 가감이었습니다.
메뉴 바 -> File -> Preference -> UserSnipets
를 선택하고 plantuml을 입력하면 plantuml.json
라는 이름의 사용자 스 니펫 설정 json 파일이 있습니다. 그것을 만나면 사용자 스 니펫을 정의 할 수 있습니다.
PlantUML로 그림을 만들 때 새 파일을 연 상태에서 Ctrl+K M 바로 가기에서
PlantUML을 입력하면 plantuml.json
에 정의 된 스 니펫을 사용할 수 있습니다.
이 기사는 이상입니다.
다음은 Select Language Mode의 입력란에서 PlantUML이 나오지 않는 경우도 없으면 도움이 되지 않는 정보이므로 읽지 않아도 괜찮습니다.
목적
VisualStudioCode에서 PlantUML을 사용할 때 자주 사용하는 설명을 Snippet에 등록하고 싶습니다!
방법
UserSnippet을 선택해···
↓
또는%AppData%/Roaming/Code/User/Snippets/
에 diagram.json
를 만들어···.
{
// Place your snippets for c 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": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"basetemp":{
"prefix": "pu",
"body":[
"@startuml",
"@enduml"
],
"description": "start and end."
}
}
이런 것을 만들어 보자.
네!
diagram.json?
여기서 *.pu 파일을 연 상태의 VSCode 화면 오른쪽 하단을 봐 주세요!
오른쪽 가장자리의 아이콘에서 세 번째로 Diagram이라고 써 있습니다만 이것이 현재 유효하게 되어 있는 언어인 것 같습니다.
*.pu 파일을 편집하는 동안 자동 검색으로 Diagram 언어가 활성화된 것 같습니다.
라고, 이 근처를 읽게 해 달라고 생각하고 있습니다.
Reference
이 문제에 관하여(VSCode에서 PlantUML Snippet을 만들고 싶다면 diagram.json을 추가하십시오!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/it_dokata_bottomline/items/14e4e306be3a68ca17ea
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
VisualStudioCode에서 PlantUML을 사용할 때 자주 사용하는 설명을 Snippet에 등록하고 싶습니다!
방법
UserSnippet을 선택해···
↓
또는%AppData%/Roaming/Code/User/Snippets/
에 diagram.json
를 만들어···.
{
// Place your snippets for c 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": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"basetemp":{
"prefix": "pu",
"body":[
"@startuml",
"@enduml"
],
"description": "start and end."
}
}
이런 것을 만들어 보자.
네!
diagram.json?
여기서 *.pu 파일을 연 상태의 VSCode 화면 오른쪽 하단을 봐 주세요!
오른쪽 가장자리의 아이콘에서 세 번째로 Diagram이라고 써 있습니다만 이것이 현재 유효하게 되어 있는 언어인 것 같습니다.
*.pu 파일을 편집하는 동안 자동 검색으로 Diagram 언어가 활성화된 것 같습니다.
라고, 이 근처를 읽게 해 달라고 생각하고 있습니다.
Reference
이 문제에 관하여(VSCode에서 PlantUML Snippet을 만들고 싶다면 diagram.json을 추가하십시오!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/it_dokata_bottomline/items/14e4e306be3a68ca17ea
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
// Place your snippets for c 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": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"basetemp":{
"prefix": "pu",
"body":[
"@startuml",
"@enduml"
],
"description": "start and end."
}
}
여기서 *.pu 파일을 연 상태의 VSCode 화면 오른쪽 하단을 봐 주세요!
오른쪽 가장자리의 아이콘에서 세 번째로 Diagram이라고 써 있습니다만 이것이 현재 유효하게 되어 있는 언어인 것 같습니다.
*.pu 파일을 편집하는 동안 자동 검색으로 Diagram 언어가 활성화된 것 같습니다.
라고, 이 근처를 읽게 해 달라고 생각하고 있습니다.
Reference
이 문제에 관하여(VSCode에서 PlantUML Snippet을 만들고 싶다면 diagram.json을 추가하십시오!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/it_dokata_bottomline/items/14e4e306be3a68ca17ea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)