#if 0 ... #endif
.
#if 0
my current selection
#endif
代码段是:
#if 0
${view.selection()}
#endif
我收到的只是一个错误:
#if 0
ReferenceError: Can't find variable: Range
#endif
view.selection()
应该行,但不行。
Range
错误
编辑:
我添加了一个函数
selection_or_nothing()
到functions(功能)选项卡
require ("range.js")
require ("range.js");
function selection_or_nothing()
{
if ( view.hasSelection() )
return view.selection();
return "";
}
代码段:
#if 0
${selection_or_nothing()}
#endif // ${comment}
这就是我现在拥有的:
#if 0
Range(Cursor(200,0), Cursor(201,0))
#endif