Creating Sublime Text Snippets

Правка en1, от Anish1712, 2020-06-02 00:10:54

Sublime Text Snippets provides a quick way to insert blocks of text that are used repeatedly while coding, which can boost your coding speed to a great extent, saves time and eliminates errors.

Creating a sublime text snippet is super easy. In order to create a new snippet you will need to:

  • Open up Sublime Text
  • Goto Tools->New Snippet
  • Modify the contents inside of the block
  • Enable your tab trigger
  • Save the file as filename.sublime-snippet
  • To invoke the snippet, type the trigger word and press tab

Example snippet :

<snippet>
	<content><![CDATA[
<!--
    Snippet code Here
 -->
]]></content>
	<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
	<!-- <tabTrigger>hello</tabTrigger> -->
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<!-- <scope>source.python</scope> -->
</snippet>
Теги code-editor

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский Anish1712 2020-06-02 00:12:26 38
en1 Английский Anish1712 2020-06-02 00:10:54 922 Initial revision (published)