aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
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
2011-07-07Detect Alt/Option modifier on Mac OSX.mitchell
2011-06-30Updated for 3.9.mitchell
2011-06-30Localize the labels and buttons in the find GUI frame; src/textadept.cmitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-24Add ability to fake modules for generating Adeptsense.mitchell
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.
2011-06-24Updated Luadoc; core/args.luamitchell
2011-06-23Use string constants for event names.mitchell
2011-06-23Removed @field docs from core/iface.lua.mitchell
2011-06-23Updated Luadoc and added extra fields to other modules.mitchell
2011-06-22Updated Luadoc and lua adeptsense.mitchell
2011-06-22Finish adding support for new Scintilla events; core/events.luamitchell
2011-06-20Updated to Scintilla 2.27.mitchell