aboutsummaryrefslogtreecommitdiff
path: root/modules/cpp
AgeCommit message (Collapse)Author
2013-11-07New ANSI C lexer.mitchell
C/C++ lexer was separated into ANSI C and C++ lexers. Also took the opportunity to use shorter macros in compile/run commands.
2013-09-27Integrated compile and run commands for most languages.mitchell
Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns.
2013-09-15Do not convert filenames to UTF-8; keep them in `_CHARSET`.mitchell
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-06-12`_M.textadept.editing.block_comment()` supports block comment delimiters.mitchell
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box.
2013-05-15Set language-specific buffer properties through an event instead of a function.mitchell
2013-04-29More code cleanup.mitchell
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-29Updated to Lua 5.2.2 and LPeg 0.11.mitchell
2013-02-25Updated Lua apidocs to 5.2.1.mitchell
2013-01-20Updated copyright date.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-10-29Updated documentation formatting.mitchell
Pathnames and filenames are italic and be more consistent with constant width text.
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files.
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-24Rename module shortcut variables.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Code cleanup.mitchell
2012-01-05Rename '_m' to '_M'.mitchell
2011-12-31Code cleanup.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.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-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-04-25Changed Mac OSX Adeptsense completion from '~' to 'Ctrl+Esc'.mitchell
2011-03-25Added Lua C API to cpp module.mitchell
2011-03-23Updated language modules to use new snippet syntax.mitchell
2011-03-14Added C standard library to cpp module Adeptsense.mitchell
2011-02-28Condense language modules into single init.lua file.mitchell
2011-02-26Use Ctrl+H for showing apidoc in cpp and lua modules.mitchell
2011-02-22Fixed bug with cpp adeptsense type_declarations; modules/cpp/adeptsense.luamitchell
2011-02-13Load user api files for adeptsense language modules.mitchell
2011-02-10Updated documentation.mitchell
2011-01-18Change cpp and lua module adeptsense key commands.mitchell
2011-01-17Added Adeptsense.mitchell
2010-12-28Updated copyright information.mitchell
2010-11-11Code cleanup.mitchell
2010-08-21Added LuaDoc for modules/cpp/commands.lua.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-10Moved textadept.io into Lua's io table.mitchell
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
2010-04-10Moved block comment strings to language-specific modules.mitchell
2010-04-09Moved _m.textadept.run module commands to language-specific modules.mitchell
2010-04-08Respect tab settings for snippets.mitchell
Thanks to Rob Gieseke.
2010-03-30Removed support for api files.mitchell
2010-01-07Updated copyright to 2010.mitchell
2009-02-28Use UTF-8 internally and respect platform filename encoding.mitchell
Added 'textadept.iconv' function to interface with GLib's g_convert() and set global _CHARSET to be the platform's filename encoding/code page.