Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-15 | Make word highlight colors more universal; modules/textadept/editing.lua | ||
2010-10-15 | Added key commands and changed LuaDoc for highlighting words. | ||
2010-10-15 | Can highlight all occurances of a word; adapted from Brian Schott. | ||
2010-10-15 | Changed locale implementation. | ||
2010-10-14 | Removed some useless editing module functions. | ||
2010-10-14 | Code formatting changes. | ||
2010-08-31 | Halt keypress event after showing completion list; modules/textadept/editing.lua | ||
2010-08-17 | Upgraded to Scintilla/SciTE 2.20. | ||
2010-06-16 | Code and documentation cleanup. | ||
2010-06-11 | Removed _G.textadept. | ||
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. | |||
2010-06-11 | Renamed textadept.events to events, renamed 'handle' and 'add_handler'. | ||
2010-04-29 | Made 'enclosure' table a field of modules/textadept/editing.lua for access. | ||
2010-04-10 | Moved block comment strings to language-specific modules. | ||
2010-04-05 | Removed kill-ring. | ||
2010-04-05 | Code cleanup. | ||
2010-03-30 | Removed support for api files. | ||
2010-03-24 | Backspace deletes auto-inserted character pairs; modules/textadept/editing.lua | ||
2010-03-24 | Make options configurable from user init.lua; modules/textadept/editing.lua | ||
2010-03-04 | Fix auto-insert of closing parenthesis; modules/textadept/editing.lua | ||
If there are multiple selections, don't insert a closing parenthesis. | |||
2010-01-07 | Updated copyright to 2010. | ||
2009-07-25 | Documentation overhaul. | ||
2009-07-19 | Removed [Local {function,table}] documentation from being shown in LuaDoc. | ||
2009-07-08 | Replace lua_dialog with gcocoadialog. | ||
2009-07-12 | The 'char_added' handler shouldn't convert int to string. | ||
2009-07-12 | Lua code cleanup. | ||
2009-03-01 | Added 'file_before_save' signal. | ||
2009-03-01 | Use buffer:text_range() instead of buffer:get_text() because of trailing '\0'. | ||
2009-02-15 | Cleaned up some Lua code. | ||
2009-02-15 | Removed buggy 'Select in Structure' from _m.textadept.editing. | ||
2009-02-10 | Moved the textadept.locale table into the globals table. | ||
2009-02-08 | Removed buffer:find() function. | ||
2009-01-30 | Moved highlight-braces from core/events.lua to modules/textadept/editing.lua. | ||
2009-01-25 | Removed some rarely-used functions from modules/textadept/editing.lua et. al. | ||
Including: * autocomplete_word_from_dict * move_line (up and down) * ruby_exec * lua_exec * reformat_paragraph | |||
2009-01-25 | Moved auto-indent from core/events.lua to modules/textadept/editing.lua. | ||
2009-01-25 | Replaced str:match with str:find where applicable for speed improvements. | ||
2009-01-21 | Don't need buffer:goto_pos() in modules/textadept/editing.lua's goto_line(). | ||
2009-01-14 | Sometimes goto_line will select text, fix that; modules/textadept/editing.lua | ||
2009-01-10 | Various improvements to speed and readability of Lua code. | ||
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. | |||
2009-01-08 | Reformatted all C and Lua code to a single standard for each language. | ||
2009-01-03 | Added localization support. | ||
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module. | |||
2009-01-01 | Updated copyright dates for 2009. | ||
2008-12-23 | Added option for smart_paste() to reindent text; modules/textadept/editing.lua | ||
2008-07-22 | Fixed goto_line bug when cancelling dialog; modules/textadept/editing.lua | ||
2008-07-21 | Moved block comment key commands from language modules to _m.textadept.editing. | ||
2008-07-05 | Cancelling 'goto line' dialog shouldn't error; modules/textadept/editing.lua | ||
2008-03-04 | Fixed bugs with tonumber(cocoa_dialog(...)) in various files. | ||
Instead of the extra overhead when calling tonumber(), add the --no-newline option and do a direct string comparison. | |||
2008-03-03 | Updated copyright notice to include the year 2008. | ||
2008-03-03 | Need non-negative return value from goto dialog; modules/textadept/editing.lua | ||
2008-02-29 | Fixed select_indented_block() bug; modules/textadept/editing.lua | ||
2008-02-23 | Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog). | ||