zetah
unread,Jan 30, 2013, 3:41:45 AM1/30/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-i...@googlegroups.com, nyama...@me.com
That solves it.
I extended a bit more.
Most notably ">>" - if user run some tool with "command.input.*" then output pane command history is bloated with every line from input. I grepped also "SciTEWin.cxx" for other possibilities:
--- recentCommands.lua
+++ recentCommands_mod.lua
@@ -8,6 +8,12 @@
for line = output.LineCount-1, 0, -1 do
local text = output:GetLine(line)
if text and string.starts(text, '>') and
+ not string.starts(text, '>>') and
+ not string.starts(text, '>Input pipe closed due to write failure') and
+ not string.starts(text, '>Process failed to respond; forcing abrupt termination') and
+ not string.starts(text, '>Attempting to cancel process') and
+ not string.starts(text, '>BREAK Failed') and
not string.starts(text, '>Exit code:') and
not string.starts(text, '>Lua:') then
text = text:sub(2)