aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
AgeCommit message (Collapse)Author
2014-11-30Added UTF-8 input mode for OSX and curses; modules/textadept/keys.luamitchell
2014-11-29Show symbol documentation in the Lua command entry; modules/textadept/keys.luamitchell
2014-11-24Use Bash syntax highlighting for "filter through" via the command entry.mitchell
2014-10-30Ensure "find in files" is off when activating normal find.mitchell
2014-10-13Parameterize lexer and height for `ui.command_entry.enter_mode()`.mitchell
Also enable more accurate Lua command completion.
2014-10-11Grow and shrink views by an integral, not arbitrary, value.mitchell
2014-10-05Replaced command entry text field with a Scintilla buffer.mitchell
`ui.command_entry` now has the same functions and fields as `buffer`s as well as an additional `height` property. Note that when the command entry is active, `_G.buffer` is unchanged, so many existing key commands cannot be bound to command entry key modes. See `keys.lua_command` in *modules/textadept/command_entry.lua* for the proper way to bind them. Removed `ui.command_entry.entry_text` and `ui.command_entry.show_completions()`.
2014-09-17Added terminal key binding to stop the currently running process.mitchell
2014-08-15Reverted separating ^H from Backspace in the terminal version.mitchell
2014-08-13Separate ^H from Backspace in the terminal version.mitchell
Also have libtermkey take care of saving and restoring termios.
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-05-28Store incremental find text for later use; modules/textadept/keys.luamitchell
2014-05-28Moved 'lua_command' mode into command entry module and removed some API funcs.mitchell
2014-05-28Removed `textadept.editing.select_indented_block()`.mitchell
2014-05-24Removed Adeptsense in favor of new framework committed in r1735.mitchell
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
2014-05-23Renamed `textadept.editing.autocomplete_word()` and added `AUTOCOMPLETE_ALL`.mitchell
The new `textadept.editing.autocomplete()` is a generic function for a new autocompletion framework that will replace Adeptsense. The framework involves individual autocompletion functions, such as one for autocompleting words. Also added new `AUTOCOMPLETE_ALL` setting for searching all buffers for word completions.
2014-05-19Use `spawn()` for launching help; modules/textadept/keys.luamitchell
2014-03-27Added basic project support for snapopen and build scripts.mitchell
Also fixed some curses errors introduced by the last commit.
2014-03-24Apparently newer versions of OSX use "Esc"; modules/textadept/keys.luamitchell
Corrected documentation.
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-02-12Added split views in the terminal version thanks to Chris Emerson.mitchell
2014-01-12Updated copyright information.mitchell
2013-10-18Added "Save All" to the menu.mitchell
2013-09-21Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.mitchell
2013-09-16Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.mitchell
2013-09-16Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.mitchell
Also removed more unused constants.
2013-09-09Moved buffer IO functions into the `io` module.mitchell
Menus and key bindings do not need `events.INITIALIZED`.
2013-09-01Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`.mitchell
2013-08-31Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.mitchell
A side effect is more efficient event emission during startup.
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-08-24Include Scintilla constants in `buffer`s.mitchell
2013-07-08Renamed Textadept module's "mime_types" to "file_types" and removed config file.mitchell
2013-07-08Added curses keys to key bindings documentation; modules/textadept/keys.luamitchell
2013-06-24Consolidated bookmarks module's "goto" functions into a new `goto_mark()`.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
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-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
2013-04-25Added icons to msgbox dialogs.mitchell
Requires gtdialog r56.
2013-04-24Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality.mitchell
Also changed experimental find incremental API.
2013-04-24Mark recognized errors in compile/run output and added navigation functions.mitchell
2013-04-24Moved `_M.textadept.filter_through` functionality into `editing` module.mitchell
2013-04-24Use `buffer.word_chars` for autocompleting words instead of a Lua pattern.mitchell
2013-04-24Renamed `_G.buffer_new()` to `buffer.new()`.mitchell
2013-04-19Updated some documentation.mitchell
2013-04-15Updated Windows curses key bindings; modules/textadept/keys.luamitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.