aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2011-12-12Updated to Lua 5.2.mitchell
2011-11-29Updated Russian localization; core/locales/locale.ru.confmitchell
Thanks to Vladimir Lomov.
2011-11-28Write theme changes to ~/.textadept/theme; core/gui.luamitchell
2011-11-28Updated for 4.3.mitchell
2011-11-23Code cleanup.mitchell
2011-11-23Removed _m.textadept.editing.select_style().mitchell
2011-11-23Added theme utilities, modified light and dark themes, and removed scite theme.mitchell
Added gui.set_theme() and gui.select_theme() theming utilities. All new light and dark themes. Moved old classic themes to the wiki.
2011-11-11Fixed erroneous charset conversion; core/file_io.luamitchell
2011-11-08Fixed bug with opening files in current dir from command line; core/file_io.luamitchell
Thanks to Travis Herrick.
2011-10-31Updated for 4.2.mitchell
2011-10-31Updated to Scintilla 3.0.0.mitchell
2011-09-28Use lexer at the caret for key commands and snippets.mitchell
2011-09-28Updated for 4.1.mitchell
2011-09-28Added gui.goto_file() for the 'find' and 'run' modules.mitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-27Added language-specific context menu support.mitchell
2011-09-26Change directory on io.open_file() or buffer:save_as(); core/file_io.luamitchell
2011-09-26Lua code cleanup.mitchell
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense.
2011-09-21Emit 'SCN' on SCNotification instead of calling events.notification().mitchell
2011-09-21Rearranged Tools menu.mitchell
2011-09-20No need to set buffer.eol_mode for OSX since Scintilla 2.29; core/gui.luamitchell
2011-09-08Only fold when clicking on fold margin, not any sensitive one; core/gui.luamitchell
2011-09-05Handle mouse dwell events.mitchell
2011-08-30Updated for 4.0.mitchell
2011-08-25Set buffer.eol_mode properly for new buffers on Mac OSX; core/gui.luamitchell
2011-08-22Changed some key commands.mitchell
2011-08-22Added Russian translation from Vladimir; core/locales/locale.ru.confmitchell
2011-08-18Updated LuaDoc.mitchell
2011-08-17LANGUAGE_MODULE_PREFIX should be Command on Mac OSX, not Control; core/keys.luamitchell
2011-08-10Updated for 4.0 beta 2.mitchell
2011-08-09Swap Control and Command key definitions on Mac OSX.mitchell
'c' is now Control and 'm' is Command.
2011-07-30Updated for 4.0 beta.mitchell
2011-07-29Eliminated the need for keys.conf and keys.osx.conf.mitchell
Thanks to Robert Gieseke for the idea and prototype code.
2011-07-28Updated to Scintilla 2.28.mitchell
2011-07-27Only allow meta key on Mac OSX; core/keys.luamitchell
On Linux, AltGr is sometimes registered as GDK_MOD5_MASK which Mac OSX identifies as meta.
2011-07-16Added Toggle Fold menu command.mitchell
2011-07-16Updated LuaDoc; core/.buffer.luadocmitchell
2011-07-16Removed Lexer menu in favor of 'Buffer->Select Lexer...'.mitchell
2011-07-16Rearranged Buffer and View menus and changed various accelerators.mitchell
2011-07-16Rearranged Edit menu and accelerators.mitchell
2011-07-16Moved Adeptsense commands into Tools menu.mitchell
2011-07-15Fixed accelerator conflict in menu.mitchell
2011-07-15Added menu and keys for moving lines up and down.mitchell
2011-07-14Added Upper and Lower menu commands for selection case.mitchell
2011-07-14Changed menu labels to be more descriptive and added select_command() dialog.mitchell
2011-07-13Refactored key commands and added menu accelerators.mitchell
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module.
2011-07-11Allow buffer functions to omit buffer argument.mitchell
This is primarily for key and menu commands to avoid creating too many unnecessary tables.
2011-07-11Removed label mnemonics from localization keys.mitchell
2011-07-11Added io.open_recent_file().mitchell