| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2023-06-09 | vis-clipboard: don't fail when sel is primary on unsupported platforms | Randy Palamar | 1 | -1/+2 | |
| this is mostly useful for the internal vis usage and makes both `*` and `+` registers work on macOS/cygwin. fixes: #1067 | |||||
| 2023-06-08 | reword the :[v]split and :[v]new descriptions in vis.1 | Randy Palamar | 1 | -6/+6 | |
| (horizontally) and (vertically) were kept to be consistent with the 'v' mnemonic and with the enum labels in the code. | |||||
| 2023-05-23 | vis.1: list equivalent key bindings on the same line | Randy Palamar | 1 | -4/+2 | |
| it is hard to tell which line <C-u> and <C-d> are supposed to belong to in the current version. see #1033 | |||||
| 2023-05-23 | vis-complete: Fix commandline options handling | Quentin Rameau | 1 | -12/+9 | |
| 2023-02-13 | vis-open: further improvement & clean-up | pmnw | 1 | -3/+2 | |
| 2023-02-12 | Correct initial value of 'syntax' option, which is not 'off' | Matěj Cepl | 1 | -1/+1 | |
| 2022-06-15 | man: explicitly document default mark usage | Evan Gates | 1 | -0/+12 | |
| Marks use 'am and 'aM to mirror register usage for yank/put and allow a default mark when one is not specified. For anyone coming from vim and used to ma and 'a usage, using a default mark when none is specified is a foreign concept. This leads to e.g. ''m and ''| when m and | would do. Explain in the man page that the default mark is used when none is specified for mark and selection set operations. [0]: ad10da5 (vis: cleanup marks implementation) | |||||
| 2020-11-19 | correct a couple of typos and distinguish between immediate and waiting ↵ | Greg Reagle | 1 | -11/+20 | |
| operators | |||||
| 2020-10-10 | vis: add vis-selection-new-match-all | Evan Gates | 1 | -0/+3 | |
| Add new vis-selection-new-match-all command, default keybinding <C-a> in visual mode. Refactor selections_next_match to find all matches if arg.b is true. This does not affect existing configs as arg.b defaults to false. | |||||
| 2020-09-19 | Add ignorecase option | Evan Gates | 1 | -0/+2 | |
| Add a global ignorecase boolean option. When set add REG_ICASE to cflags when calling text_regex_compile(). | |||||
| 2020-08-01 | vis: remove ae outer entire text object | Marc André Tanner | 1 | -3/+0 | |
| Use :, which is a short hand for :0,$ instead. | |||||
| 2020-08-01 | vis: remove ie inner entire text object | Marc André Tanner | 1 | -3/+0 | |
| 2020-08-01 | vis: remove z> rightmost pairwise selection combinator | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: remove z< leftmost pairwise selection combinator | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: remove z- shorter pairwise selection combinator | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: remove z+ longer pairwise selection combinator | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: remove z& pairwise selection intersection | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: remove z| pairwise union | Marc André Tanner | 1 | -2/+0 | |
| 2020-08-01 | vis: use ~ instead of ! for selection complement | Marc André Tanner | 1 | -1/+1 | |
| This seems more consistent with the typical set/bit operations. | |||||
| 2020-08-01 | vis: remove ~ as alias for g~ | Marc André Tanner | 1 | -3/+3 | |
| 2020-07-17 | support for primary clipboard | Jeremy Bobbin | 1 | -0/+4 | |
| 2020-04-28 | man: document theme location | Marc André Tanner | 1 | -0/+5 | |
| Fix #824 | |||||
| 2020-02-24 | lua: add `redrawtime` option | Georgi Kirilov | 1 | -0/+3 | |
| Upper bound lexing time and cancel highlighting if it is exceeded. | |||||
| 2020-02-12 | sam: support optional count for text commands | Marc André Tanner | 1 | -2/+5 | |
| The text given for the a, i and c commands can be prefixed with an optional count indicating how often the text should be inserted, defaults to 1. | |||||
| 2020-02-10 | vis-menu: use distinct error code upon cancelling selection | Marc André Tanner | 1 | -1/+2 | |
| The following exit statuses are used: 0 an item was successfully selected 1 the selection was cancelled >1 failure, some error occured | |||||
| 2020-01-30 | man: fix mandoc linting warnings | Marc André Tanner | 2 | -5/+5 | |
| These are reported by: mandoc -T lint | |||||
| 2020-01-30 | man: fix skipping empty macro warnings | Marc André Tanner | 1 | -43/+43 | |
| 2020-01-30 | man: fix mandoc warnings as reported by make man | Marc André Tanner | 1 | -22/+26 | |
| 2020-01-28 | vis: support an optional exit status in :q and :qall commands | Marc André Tanner | 1 | -3/+3 | |
| This can for example be used to abort git commit messages with :q! 1. | |||||
| 2020-01-23 | man: remove redundant layout option abbreviation | Karl Schultheisz | 1 | -1/+1 | |
| 2020-01-22 | add layout option to manpage | Karl Schultheisz | 1 | -0/+3 | |
| 2018-05-30 | vis: add loadmethod option | Marc André Tanner | 1 | -0/+11 | |
| Valid values are `read`, `mmap` or `auto`. | |||||
| 2018-05-30 | man: Mark command line arguments with .Cm | TwoFinger | 1 | -2/+2 | |
| 2018-05-30 | man: Mark ranges with en-dashes | TwoFinger | 1 | -8/+8 | |
| 2018-05-30 | man: Mark a few parameters with .Ar | TwoFinger | 1 | -66/+78 | |
| 2018-05-30 | man: Mark a few literals with .Li | TwoFinger | 1 | -2/+4 | |
| 2018-05-30 | man: Mark a few commands with .Ic | TwoFinger | 1 | -8/+10 | |
| 2018-05-30 | man: Add a couple missing .Ic | TwoFinger | 1 | -2/+2 | |
| 2018-05-30 | man: Add a missing paragraph separator | TwoFinger | 1 | -0/+1 | |
| 2018-05-30 | man: Undocument a recently removed feature | TwoFinger | 1 | -3/+0 | |
| 2018-05-30 | man: This tip belongs to the last list item | TwoFinger | 1 | -1/+1 | |
| 2018-05-17 | vis: make % motion match quotes and backticks as well | Javier Olaechea | 1 | -1/+1 | |
| Close #703 Fix #670 | |||||
| 2018-05-16 | vis: remove gq alias for = | Marc André Tanner | 1 | -3/+0 | |
| 2018-03-26 | man: fix POSIX vi(1) reference | Marc André Tanner | 1 | -1/+2 | |
| Fix #687 | |||||
| 2018-02-19 | man: add a note about the visrc.lua structure to vis.1 | Peter Nagy | 1 | -0/+5 | |
| As seen in #669 I didn't *get it* one needs to have a special stub in `visrc.lua` for everything to work properly. Putting at least a few words in the man page might help some others like me in the future :) Close #671 | |||||
| 2017-12-21 | Add a key combo example of mark usage | Javier Olaechea | 1 | -0/+7 | |
| 2017-10-30 | man: remove outdated key mapping | Marc André Tanner | 1 | -3/+0 | |
| Fix #622 | |||||
| 2017-09-15 | man: fix typos and grammar issues | Marc André Tanner | 1 | -7/+5 | |
| 2017-09-13 | vis.1: Surround with quotes link-name arguments of .Lk | Javier Olaechea | 1 | -5/+5 | |
| As noted on mdoc(7), in groff "Lk only accepts a single link-name argument; the remainder is misformatted. The quotes makes groff treat the title as a single argument. | |||||
| 2017-07-14 | man: update manual page with recent developments | Marc André Tanner | 1 | -89/+143 | |
