标签: java eclipse eclipse-jdt
在我的Eclipse Mars.2中,我现在有了这个try/catch模板:(“Java - Editor - Templates”)
try/catch
try { ${cursor} } catch (${Exception} ${exception_variable_name}) { }
插入后,光标会跳转到${Exception}而不是${cursor}。如何使光标位于应有的位置?
${Exception}
${cursor}
我还想在catch块的主体中添加另一个“制表符跳转点”。怎么做?
catch