c
트리거하고 싶어요console.log()
내가 만든 코드 조각은 아래의 올바른 구문을 가지며 다음 문서에 따라 올바른 폴더 경로에 있습니다.http://www.hongkiat.com/blog/sublime-code-snippets/|http://sublimetext.info/docs/en/extensibility/snippets.html
<snippet>
<content><![CDATA[
console.log(${1:this});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>c</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.JavaScript</scope>
</snippet>
User
내 폴더와 폴더 안에 스니펫 파일이 생성되었습니다 User/Javascript
. 올바른 sublime-snippet
확장자도 있습니다 .
JavaScript 기본 스니펫을 설치하는 데 어려움을 겪었지만 이제는 그냥 console
설치하는 대신 console.dir(obj)
누가 그것을 사용합니까 ㅋㅋㅋ? 어쨌든 나만의 맞춤 코드 조각을 만들 수 없다면 이 코드 조각을 어떻게 편집할 수 있나요?
답변1
Sublime에서 JavaScript 파일의 기본 범위는 source.js
가 아니라 입니다 source.javascript
. CtrlAltShiftP(Linux/Windows) 또는 ⌘AltP(OS X)를 눌러 커서에서 전체 범위를 찾을 수 있습니다 .