Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-23 | Removed _m.textadept.editing.select_style(). | ||
2011-11-23 | Added theme utilities, modified light and dark themes, and removed scite theme. | ||
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-11 | Fixed erroneous charset conversion; core/file_io.lua | ||
2011-11-08 | Fixed bug with opening files in current dir from command line; core/file_io.lua | ||
Thanks to Travis Herrick. | |||
2011-10-31 | Updated for 4.2. | ||
2011-10-31 | Updated to Scintilla 3.0.0. | ||
2011-09-28 | Use lexer at the caret for key commands and snippets. | ||
2011-09-28 | Updated for 4.1. | ||
2011-09-28 | Added gui.goto_file() for the 'find' and 'run' modules. | ||
2011-09-27 | Reformatted some LuaDoc. | ||
2011-09-27 | Added language-specific context menu support. | ||
2011-09-26 | Change directory on io.open_file() or buffer:save_as(); core/file_io.lua | ||
2011-09-26 | Lua code cleanup. | ||
2011-09-25 | Refactored textadept.c and changed Lua interface a bit. | ||
'_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-21 | Emit 'SCN' on SCNotification instead of calling events.notification(). | ||
2011-09-21 | Rearranged Tools menu. | ||
2011-09-20 | No need to set buffer.eol_mode for OSX since Scintilla 2.29; core/gui.lua | ||
2011-09-08 | Only fold when clicking on fold margin, not any sensitive one; core/gui.lua | ||
2011-09-05 | Handle mouse dwell events. | ||
2011-08-30 | Updated for 4.0. | ||
2011-08-25 | Set buffer.eol_mode properly for new buffers on Mac OSX; core/gui.lua | ||
2011-08-22 | Changed some key commands. | ||
2011-08-22 | Added Russian translation from Vladimir; core/locales/locale.ru.conf | ||
2011-08-18 | Updated LuaDoc. | ||
2011-08-17 | LANGUAGE_MODULE_PREFIX should be Command on Mac OSX, not Control; core/keys.lua | ||
2011-08-10 | Updated for 4.0 beta 2. | ||
2011-08-09 | Swap Control and Command key definitions on Mac OSX. | ||
'c' is now Control and 'm' is Command. | |||
2011-07-30 | Updated for 4.0 beta. | ||
2011-07-29 | Eliminated the need for keys.conf and keys.osx.conf. | ||
Thanks to Robert Gieseke for the idea and prototype code. | |||
2011-07-28 | Updated to Scintilla 2.28. | ||
2011-07-27 | Only allow meta key on Mac OSX; core/keys.lua | ||
On Linux, AltGr is sometimes registered as GDK_MOD5_MASK which Mac OSX identifies as meta. | |||
2011-07-16 | Added Toggle Fold menu command. | ||
2011-07-16 | Updated LuaDoc; core/.buffer.luadoc | ||
2011-07-16 | Removed Lexer menu in favor of 'Buffer->Select Lexer...'. | ||
2011-07-16 | Rearranged Buffer and View menus and changed various accelerators. | ||
2011-07-16 | Rearranged Edit menu and accelerators. | ||
2011-07-16 | Moved Adeptsense commands into Tools menu. | ||
2011-07-15 | Fixed accelerator conflict in menu. | ||
2011-07-15 | Added menu and keys for moving lines up and down. | ||
2011-07-14 | Added Upper and Lower menu commands for selection case. | ||
2011-07-14 | Changed menu labels to be more descriptive and added select_command() dialog. | ||
2011-07-13 | Refactored key commands and added menu accelerators. | ||
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module. | |||
2011-07-11 | Allow buffer functions to omit buffer argument. | ||
This is primarily for key and menu commands to avoid creating too many unnecessary tables. | |||
2011-07-11 | Removed label mnemonics from localization keys. | ||
2011-07-11 | Added io.open_recent_file(). | ||
2011-07-07 | Detect Alt/Option modifier on Mac OSX. | ||
2011-06-30 | Updated for 3.9. | ||
2011-06-30 | Localize the labels and buttons in the find GUI frame; src/textadept.c | ||
2011-06-24 | Removed '_G' prefix from globals where necessary. | ||
2011-06-24 | Add ability to fake modules for generating Adeptsense. | ||
With the new absolute field recognition, it is possible have a non-existant module name in scripts/adeptsensedoc.lua's add_field() function. For example, A '_G._SCINTILLA.constants.SCLEX_LPEG' field would look-up the '_SCINTILLA.constants' module which does not exist; it is a table. Instead of throwing an error, create a fake module so the appropriate tags and apidoc are created ('SCLEX_LPEG _ 0;" F class:_SCINTILLA.constants') but do not create tags and apidoc for the fake module. |