Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Changeset 15 introduced an 'increment' variable that is normally +/-1 for find
next and find prev respectively. However instead of adding the increment for
find prev, it subtracts it, effectively adding 1 which is not right.
|
|
|
|
|
|
|
|
Adapted conditionals from SciTE to fix a bug where the caret is sometimes placed
incorrectly when trying to maintain indentation.
|
|
|
|
'%%' is now properly escaped.
%() sequence executes Lua code, showing an error dialog if one occured.
|
|
|
|
|
|
|
|
Each buffer function or property is matched to prefix before being added to the
completion list.
|
|
|
|
'find' has an additional nowrap parameter that 'replace_all' uses so the latter
will not loop indefinately if there are still matches in the document.
'find' also sets search_anchor more appropriately based on context so some
matches aren't skipped accidentally.
|
|
docstatusbar_text now uses 4 spaces instead of pipes for separation.
Command completion entries are sorted and the ':' character is allowed. If the
path is 'buffer', show the available functions or properties depending on if
'buffer' is followed by a '.' or ':' in addition to its table fields.
|
|
Shebangs are split into words which are looked up in a shebangs table to
determine the proper lexer language for the buffer.
|
|
|
|
|