2013-10-10 108 views

回答

0

你可以寫你自己的片段。

<snippet> 
    <content><![CDATA[ 
Fromage cheesy feet pecorino. Cheese and biscuits cut the cheese when the cheese comes out everybody's happy melted cheese jarlsberg cheesy feet dolcelatte goat. Cut the cheese cheesecake fondue halloumi dolcelatte cheese and wine macaroni cheese emmental. Halloumi port-salut hard cheese taleggio cheese strings. 

Caerphilly who moved my cheese roquefort. Boursin brie chalk and cheese cheese triangles when the cheese comes out everybody's happy cottage cheese stinking bishop goat. Cheese on toast swiss taleggio feta goat queso bavarian bergkase edam. Cottage cheese smelly cheese cheesy grin cut the cheese fondue everyone loves. 
]]></content> 
    <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> 
    <tabTrigger>lorem200</tabTrigger> 
    <!-- Optional: Set a scope to limit where the snippet will trigger --> 
    <scope>text.html</scope> 
</snippet> 

現在,如果你在一個HTML文件中寫lorem200,然後按Tab鍵,你會得到你定義的Lorem存有。

+0

對不起,我有點新......在這個片段去哪裏? –

+0

將它保存在任何包的文件夾中。最好在'User'中。在這裏閱讀更多http://docs.sublimetext.info/en/latest/extensibility/snippets.html –

+0

太棒了。非常感謝。 –

1

您可以將自己的Lorem Ipsum文本添加到Emmet中:您應該將自己的虛擬單詞註冊爲新語言。

要添加新的語言Lorem存有,創建一個JS文件中extensions folder,內容如下:

emmet.require('lorem').addLand('my', 'collaboratively administrate empowered markets via plug-and-play networks')

第一個參數是一個語言名稱(它必須是兩字母單詞),第二個參數是空格分隔的單詞,將用於生成虛擬文本。

使用該發電機如下:loremmy100

您還可以設置你的虛擬文本語言作爲默認的:只需覆蓋lorem.defaultLang設置在preferences.json,例如將其設置爲"lorem.defaultLang": "my",以便您可以簡單地編寫lorem100

相關問題