Scite 列出所有出现

lua-users home
wiki

此条目没有脚本,这是我的实现。

输出应该类似于 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 日
最近更改 · 偏好设置
编辑 · 历史记录
最后编辑于 2006 年 8 月 31 日下午 8:38 GMT (差异)