자주 사용하는 Phrase Express 구문
2056 단어 phraseexpresstech
일자
0 채우기
// Phrase content:
{#datetime -f yyyy/mm/dd}
// Autotext Abbreviation:
tdy;
Execute immediately
이후 축소를 생략합니다.0 채우기 없음
// Phrase content:
{#datetime -f yyyy/m/d}
// Autotext Abbreviation:
tdyy;
Execute immediately
0 매립하기 싫은 사람과 교류할 때 사용하면 편리하다.URL(git)
// Phrase content:
https://git.xxx/xxxx/xxx/commit/{#insertclipboard}
// Autotext Abbreviation:
gitx;
Execute immediately
GUI 클라이언트 등에서 해시 값을 받은 상태에서 약어를 입력하면 공유를 제출할 URL을 바로 만들 수 있어 편리하다.'gita','gitb'등의 줄임말에 창고의 이니셜을 더해 양산한다.
code
저널
// Phrase content:
console.log({#cursor});
// Autotext Abbreviation:
clog'
Execute immediately
javascript의 로그를 쉽게 만드는 데 사용됩니다.줄임말의 마지막은';'이다.이렇게 되면 VScode의 완성을 확인하기 위해 ''을(를) 사용합니다.
로그 그룹 1
// Phrase content:
console.group({#cursor});
console.groupEnd();
// Autotext Abbreviation:
cgs'
Execute immediately
줄임말의 끝은';'이다.생략그룹과 그룹 End는 어차피 세트로 사용하기 때문에 한꺼번에 넣으면 끝을 잊어버리는 경우가 줄어들 것 같아요.
로그 그룹 2
// Phrase content:
console.group({#cursor});
// Autotext Abbreviation:
cgst'
Execute immediately
로그 그룹 1의 그룹 버전만 표시됩니다.별로 안 써요.로그 그룹 3
// Phrase content:
console.groupEnd();
// Autotext Abbreviation:
cge'
Execute immediately
로그 그룹 1의 그룹 End 버전만 사용할 수 있습니다.비교적 자주 쓰다.뒤를 밟다
// Phrase content:
console.trace();
// Autotext Abbreviation:
ctr'
Execute immediately
기타
Reference
이 문제에 관하여(자주 사용하는 Phrase Express 구문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/leino/articles/4f1ab8563dd334텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)