| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-10-10 | text: add text_object_find_next/prev | Evan Gates | 1 | -0/+3 | |
| Add two new text-object functions to search forwards/backwards for a string literal (not a regex) with the same signature as text_object_word_find_next/prev. This allows them to be used interchangeably with the word based variant through function pointers. | |||||
| 2020-08-01 | vis: remove ie inner entire text object | Marc André Tanner | 1 | -2/+0 | |
| 2018-03-05 | Fix a typo in identifiers | TwoFinger | 1 | -1/+1 | |
| 2018-02-27 | vis: implement normal/outer paragraph text object | Marc André Tanner | 1 | -0/+1 | |
| 2017-03-05 | text-object: remove C implementation of file name text object | Marc André Tanner | 1 | -3/+0 | |
| This is no longer needed now that the completion logic was moved to Lua. | |||||
| 2017-02-23 | text-object: remove text_object_number | Marc André Tanner | 1 | -2/+0 | |
| This was only used by the number increment/decrement action. The same functionality (and more) can be implemented in lua using something like: vis:textobject_new("in", function(win, pos) return win.file:match_at(vis.lexers.integer + vis.lexers.float, pos, 64) end, "Number text object") | |||||
| 2017-02-15 | vis: remove motion and text objects related to C functions | Marc André Tanner | 1 | -4/+0 | |
| These do not really belong into the editor core. If desired they could be implemented in Lua instead. | |||||
| 2016-02-15 | Add text object to cover lines with same indentation level | Marc André Tanner | 1 | -0/+2 | |
| By default it is mapped to i<Tab> and a<Tab> however there is currently no difference between the inner and regular version. | |||||
| 2016-02-11 | vis: implement gn and gN text objects | Marc André Tanner | 1 | -0/+3 | |
| The behaviour when no match is found is not yet optimal. | |||||
| 2016-02-07 | text-object: introduce text_object_filename | Marc André Tanner | 1 | -0/+1 | |
| 2016-02-07 | text-object: introduce text_object_number | Marc André Tanner | 1 | -0/+2 | |
| 2016-02-03 | text-object: add utility function for abitrarily delimited text objects | Marc André Tanner | 1 | -0/+2 | |
| 2015-08-06 | vis: implement al and il text objects | Marc André Tanner | 1 | -0/+3 | |
| 2015-08-02 | vis: add text objects `af` and `if` | Marc André Tanner | 1 | -0/+4 | |
| They try to match C-like function definitions. The inner variant only contains the function body. | |||||
| 2015-08-01 | vis: support `ae` and `ie` text objects | Marc André Tanner | 1 | -0/+4 | |
| 2015-07-28 | text-object: introduce utility function text_range_is_linewise | Marc André Tanner | 1 | -0/+2 | |
| 2015-07-26 | text-object: add new functions to search for words | Marc André Tanner | 1 | -0/+3 | |
| 2015-07-23 | text-object: add text_range_linewise | Marc André Tanner | 1 | -0/+3 | |
| Takes a range and extends both ends to cover the remaining part of the line. | |||||
| 2014-12-23 | Distinct between inner and outer word text objects | Marc André Tanner | 1 | -4/+7 | |
| 2014-09-27 | Add text objects for word (lowercase) variant | Marc André Tanner | 1 | -3/+2 | |
| 2014-09-25 | Perform some renames in preparation for different word types | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-25 | Add text_object_word_raw which does not include any whitespaces | Marc André Tanner | 1 | -1/+3 | |
| 2014-09-10 | Add comments where appropriate | Marc André Tanner | 1 | -3/+10 | |
| 2014-09-03 | Introduce a logical line as text-object | Marc André Tanner | 1 | -0/+1 | |
| 2014-08-31 | Expose various text objects with individual functions | Marc André Tanner | 1 | -4/+9 | |
| 2014-08-28 | text-objects: add objects delimited by brackets or quotes | Marc André Tanner | 1 | -0/+3 | |
| 2014-08-28 | text-object: make word object behave more like in vim | Marc André Tanner | 1 | -0/+2 | |
| 2014-08-25 | Move motion related stuff into own file | Marc André Tanner | 1 | -0/+13 | |
