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