Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
These were merely for aid in migrating from a previous version to 10.0.
|
|
The default lexer styles were being refreshed, but not any custom styles defined
by the lexer.
|
|
|
|
|
|
Also updated to Lua 5.3 syntax where held back by LuaJIT's 5.1/5.2 syntax.
|
|
|
|
|
|
Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required.
Since C++11 includes regex capability, drop TRE dependency.
|
|
|
|
Requires Scintillua r474 (changeset e0da6f7984c6).
|
|
|
|
These notices are only for changes that are likely to affect users like theme
settings and ~/textadept/properties.lua.
These notices should be removed later.
|
|
As a result, no need for a *properties.lua* file anymore. Also, renamed
`ui.set_theme()` to `buffer.set_theme()`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
A side effect is more efficient event emission during startup.
|
|
|
|
|
|
|
|
The module was being loaded by default anyway. Besides, the user's
modules/textadept/init.lua controls which parts are loaded.
|
|
"local buffer = buffer" and similar optimizations are not needed since lexing
the buffer is much more expensive and reaction time is limited by how fast the
keyboard can submit key presses.
|
|
|
|
Do not look in the current working directory for modules.
Look in _USERHOME for shared libraries.
|
|
|
|
Also added documentation on running with LuaJIT and require GTK+ 2.18 now.
|
|
|
|
|
|
|
|
|
|
Also modified the editing module's enclose() and select_enclosed() functions.
|
|
|
|
|
|
|
|
|
|
Created new _SCINTILLA core module.
Renamed textadept.constants to _SCINTILLA.constants
Renamed textadept.buffer_functions to _SCINTILLA.functions
Renamed textadept.buffer_properties to _SCINTILLA.properties
Created new gui core module.
Renamed textadept._print() to gui._print().
Renamed textadept.check_focused_buffer() to gui.check_focused_buffer().
Renamed textadept.clipboard_text to gui.clipboard_text.
Renamed textadept.context_menu to gui.context_menu
Renamed textadept.command_entry to gui.command_entry.
Renamed textadept.dialog to gui.dialog.
Renamed textadept.docstatusbar_text to gui.docstatusbar_text.
Renamed textadept.find to gui.find.
Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer.
Renamed textadept.get_split_table() to gui.get_split_table().
Renamed textadept.gtkmenu() to gui.gtkmenu().
Renamed textadept.goto_view() to gui.goto_view().
Renamed textadept.menubar to gui.menubar.
Renamed textadept.print() to gui.print().
Renamed textadept.size to gui.size.
Renamed textadept.statusbar_text to gui.statusbar_text.
Renamed textadept.switch_buffer() to gui.switch_buffer().
Renamed textadept.title to gui.title.
Renamed textadept.buffers to _G._BUFFERS.
Renamed textadept.new_buffer() to _G.new_buffer().
Renamed textadept.quit() to _G.quit().
Renamed textadept.reset() to _G.reset().
Renamed textadept.views to _G._VIEWS.
Renamed textadept.user_dofile() to _G.user_dofile().
Renamed textadept.iconv to string.iconv.
Renamed textadept.session_file to _SESSIONFILE.
Renamed appropriate C functions.
|
|
|
|
|
|
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
|
|
|
|
|
|
|
|
|