Scite 列出所有出现 |
|
输出应该类似于 grep 或 findstr 的输出,因此 F4 '下一个消息' 应该按预期工作。
function SciteListAllOccurances() if props.CurrentSelection ~= "" then for m in editor:match( "^.*" .. props.CurrentSelection .. ".*$", SCFIND_REGEXP, 0) do print(props.FileNameExt .. ":" .. (editor:LineFromPosition(m.pos)+1) .. ":" .. m.text); end else alert("The InternalGrep script only searchs for selected text"); end end--April White,2006 年 1 月 21 日