Maybe I should be clearer.
this is the code:
editor:StartRecord()
frame:Connect(wx.wxID_ANY, wx.wxEVT_STC_MACRORECORD,
function (event)
table.insert(recorded, {event.Message, event.WParam, event.LParam})
end)
the problem is that for the SCI_REPLACESEL notification scintilla send a
character back
John Labenski <[EMAIL PROTECTED]> writes:
> > in NotifyMacroRecord in editor.cxx
> > SCI_REPLACESEL sends a pointer instead of the string.
> > In all cases a single character is being transferred but it is stored in a
> > string.
> > I am not familiar enough with the code to propose a change so I
On 1/1/07, Andre <[EMAIL PROTECTED]> wrote:
>
> Scintilla expect string for some of its messages this list may not be
> complete but since the code is emitted it is not important.
> SCI_SETTEXT
> SCI_COPYTEXT
> SCI_REPLACESEL
> SCI_REPLACETARGET
> SCI_REPLACETARGETRE
> SCI_SEARCHINTARGET
> SCI_ADDT
Andre <[EMAIL PROTECTED]> writes:
> in NotifyMacroRecord in editor.cxx
> SCI_REPLACESEL sends a pointer instead of the string.
> In all cases a single character is being transferred but it is stored in a
> string.
> I am not familiar enough with the code to propose a change so I will change
> th
Scintilla expect string for some of its messages this list may not be
complete but since the code is emitted it is not important.
SCI_SETTEXT
SCI_COPYTEXT
SCI_REPLACESEL
SCI_REPLACETARGET
SCI_REPLACETARGETRE
SCI_SEARCHINTARGET
SCI_ADDTEXT
SCI_ADDSTYLEDTEXT
SCI_INSERTTEXT
SCI_APPENDTEXT
SCI_S