Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ignores SciTE IDM_* constants automatically and changes SC_MASK_FOLDERS from
0xFE000000 to -33554432 due to lua_checklong() issues. (0xFE000000 has a value
of 4261412864, but lua_checklong() gives it as -2147483648 due to overflow I
suspect. Either way -2147483648 & (1 << SC_MARKNUM_FOLDEROPEN) behaves as
expected, but -2147483648 & (1 << SC_MARKNUM_FOLDER) does not.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If placeholders occured just before an EOL, Scintilla regex matching cannot
recognize newline characters as [^(]. Had to explicitly search for the case
where an EOL occurs after the placeholder being searched for.
|
|
|
|
|
|
|
|
|
|
Now editing core/events.lua's buffer_new handler function is no longer necessary
on a per-user basis. If _THEME is set, that theme's buffer.lua is loaded for a
'buffer_new' event, and view.lua for 'view_new'.
|
|
|
|
|
|
|
|
|
|
|