0

これらすべての素晴らしい lorem ipsum のバリエーションが浮かんでいますが、それらをコピーして Sublime Text 2 に手動で貼り付けるつもりはありません。Emmet (lorem100) のショートカットが好きすぎる。

Emmet が挿入してくれるように、デフォルトの ipsum をこれらのカスタム ipsum のいずれかに変更する方法を知っている人はいますか?

4

2 に答える 2

1

独自の Lorem Ipsum テキストを Emmet に追加できます。独自のダミー ワードを新しい言語として登録する必要があります。

Lorem Ipsum に新しい言語を追加するには、extensions フォルダーに次の内容の JS ファイルを作成します。

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

最初の引数は言語名 ( 2 文字の単語でなければなりません) で、2 番目の引数はダミー テキストの生成に使用されるスペース区切りの単語です。

このジェネレーターは次のように使用します。loremmy100

ダミーのテキスト言語をデフォルトとして設定することもできます: の設定を上書きするlorem.defaultLangだけです。preferences.json"lorem.defaultLang": "my"lorem100

于 2013-10-10T20:28:01.363 に答える
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>

lorem200HTML ファイルに書き込んで を押すTabと、定義した lorem ipsum が得られます。

于 2013-10-10T16:56:02.553 に答える