Age | Commit message (Collapse) | Author |
|
Changed goto_buffer key command to be more standard.
Explicitly defined undo, redo, etc. key commands so they can be changed by
users.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Moved C code for saving/restoring state when switching buffers to Lua. Also
added saving of folding state.
|
|
|
|
|
|
Can open, save, and convert between different character encodings now.
|
|
Added 'textadept.iconv' function to interface with GLib's g_convert() and set
global _CHARSET to be the platform's filename encoding/code page.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Earlier textadept.print() printed to the error buffer. Now it prints to its own
message buffer. Additional textadept.print() calls print to that same buffer.
|
|
|
|
|
|
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc.
Added more locals to core/ext/keys.lua for speed improvement.
Reformatted some Lua modules to the earlier standard committed.
|
|
|
|
All Textadept messages are in core/locale.lua which provides the new
'textadept.locale' module.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Instead of the extra overhead when calling tonumber(), add the --no-newline
option and do a direct string comparison.
|