1
說我的代碼是這樣的:如何在崇高文本中編寫「動態」片段?
datatype type_name =
| a of()
| b of()
... // more
是否有可能對我產生我每次按Tab鍵| ${place_holder} of()
對?
我現在的片段是:
<snippet>
<content><![CDATA[
datatype ${1:type_name} =
| ${2} of (${3})
${4}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>dat</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.ats</scope>
</snippet>
但正如你看到的,那麼用戶命中的選項卡中的第四次,我無法生成另一個| of()
對。
爲什麼不分配'| ($ {2})的$ {1}'到鍵盤快捷鍵? – MattDMo