diff options
Diffstat (limited to 'core/iface.lua')
-rw-r--r-- | core/iface.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/iface.lua b/core/iface.lua index 954aca04..2b9550d8 100644 --- a/core/iface.lua +++ b/core/iface.lua @@ -148,6 +148,7 @@ constants = { SCI_GETMODIFY = 2159, SCI_GETMOUSEDOWNCAPTURES = 2385, SCI_GETMOUSEDWELLTIME = 2265, + SCI_GETMULTIPASTE = 2615, SCI_GETMULTIPLESELECTION = 2564, SCI_GETOVERTYPE = 2187, SCI_GETPASTECONVERTENDINGS = 2468, @@ -277,6 +278,7 @@ constants = { SCI_SETMODEVENTMASK = 2359, SCI_SETMOUSEDOWNCAPTURES = 2384, SCI_SETMOUSEDWELLTIME = 2264, + SCI_SETMULTIPASTE = 2614, SCI_SETMULTIPLESELECTION = 2563, SCI_SETOVERTYPE = 2186, SCI_SETPASTECONVERTENDINGS = 2467, @@ -506,6 +508,8 @@ constants = { SC_MOD_DELETETEXT = 0x2, SC_MOD_INSERTTEXT = 0x1, SC_MULTILINEUNDOREDO = 0x1000, + SC_MULTIPASTE_EACH = 1, + SC_MULTIPASTE_ONCE = 0, SC_MULTISTEPUNDOREDO = 0x80, SC_PERFORMED_REDO = 0x40, SC_PERFORMED_UNDO = 0x20, @@ -674,6 +678,7 @@ functions = { get_sel_text = {2161, 1, 0, 8}, get_style_name = {4013, 1, 1, 8}, get_styled_text = {2015, 1, 0, 10}, + get_tag = {2616, 1, 1, 8}, get_text = {2182, 1, 2, 8}, get_text_range = {2162, 1, 0, 10}, goto_line = {2024, 0, 1, 0}, @@ -949,6 +954,7 @@ properties = { modify = {2159, 0, 5, 0}, mouse_down_captures = {2385, 2384, 5, 0}, mouse_dwell_time = {2265, 2264, 1, 0}, + multi_paste = {2615, 2614, 1, 0}, multiple_selection = {2564, 2563, 5, 0}, overtype = {2187, 2186, 5, 0}, paste_convert_endings = {2468, 2467, 5, 0}, |