现在我有了这个neosnippet,输出会在第一个和最后一个之间缩进行。
snippet doc
alias /..
/**
*
* @package ${1}
* @author Author Name <authorname@gmail.com>
* @license ${2:http://www.wtfpl.net/ Do What the Fuck You Want to Public License}
* @version Release: ${3:0.1.0}
* @link http://github.com/${4}
* @since Class available since Release ${5:0.1.0}
*/
${6:TARGET}
输出片段最终会像这样......
/**
*
* @package
* @author Author Name <authorname@gmail.com>
* @license http://www.wtfpl.net/ Do What the Fuck You Want to Public License
* @version Release: 0.1.0
* @link http://github.com/
* @since Class available since Release 0.1.0
*/
有没有办法在两者之间禁用缩进?谢谢!
答案 0 :(得分:1)
迟到了,但其他人也可能会搜索(就像我过去半小时一样)。解决方案就像愚蠢一样简单:
在代码段的定义中使用制表符而不是空格。 (&#34;:设置列表&#34;帮助)