将光标定位在 yasnippet 中的指定位置
Positon cursor at a specified location in yasnippet
我有这样一个片段
# -*- mode: snippet -*-
# name: test
# key: test
# condition: t
# expand-env: ((yas/indent-line 'fixed) (yas/wrap-around-region 'nil))
# --
*** Expenses ""
将此代码段插入到 org doc 后,光标位于下一行的开头。
如何将中标放在标题***费用“”的字符串“?Cursor”中?
光标出现在占位符 [=11=]
中。所以,片段正文应该是
*** Expenses "[=10=]"
顺便说一句,yas/...
变量已过时,已被 yas-...
前缀取代,例如。 yas-indent-line
和 yas-wrap-around-region
.
我有这样一个片段
# -*- mode: snippet -*-
# name: test
# key: test
# condition: t
# expand-env: ((yas/indent-line 'fixed) (yas/wrap-around-region 'nil))
# --
*** Expenses ""
将此代码段插入到 org doc 后,光标位于下一行的开头。
如何将中标放在标题***费用“”的字符串“?Cursor”中?
光标出现在占位符 [=11=]
中。所以,片段正文应该是
*** Expenses "[=10=]"
顺便说一句,yas/...
变量已过时,已被 yas-...
前缀取代,例如。 yas-indent-line
和 yas-wrap-around-region
.