aboutsummaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorFilesLines
2025-04-17vis.1: fix typoAlan Urmancheev1-1/+1
2023-12-05lua: drop redrawtime optionRandy Palamar1-3/+0
This hasn't worked in almost a year and even if it did it makes no sense. Based on my testing lexing takes a couple milliseconds at most. If it took 1 second (the default value for this option) vis would be completely unusable. If people want support for this it should be submitted upstream and vis will act based on the outcome of that. closes #1122: lexer no longer obeys redrawtime
2023-08-24sam.c: rename a number of options to match lua apiRandy Palamar1-4/+4
2023-07-28view.c: add word wrappingAndrey Proskurin1-0/+5
this is contolled by the wrapcolumn/wc and breakat/brk options related #142: Word wrap and line breaks related #932: Vis for Prose? related #1092: Disabling line wrapping
2023-06-09vis-clipboard: don't fail when sel is primary on unsupported platformsRandy Palamar1-1/+2
this is mostly useful for the internal vis usage and makes both `*` and `+` registers work on macOS/cygwin. fixes: #1067
2023-06-08reword the :[v]split and :[v]new descriptions in vis.1Randy Palamar1-6/+6
(horizontally) and (vertically) were kept to be consistent with the 'v' mnemonic and with the enum labels in the code.
2023-05-23vis.1: list equivalent key bindings on the same lineRandy Palamar1-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-23vis-complete: Fix commandline options handlingQuentin Rameau1-12/+9
2023-02-13vis-open: further improvement & clean-uppmnw1-3/+2
2023-02-12Correct initial value of 'syntax' option, which is not 'off'Matěj Cepl1-1/+1
2022-06-15man: explicitly document default mark usageEvan Gates1-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-19correct a couple of typos and distinguish between immediate and waiting ↵Greg Reagle1-11/+20
operators
2020-10-10vis: add vis-selection-new-match-allEvan Gates1-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-19Add ignorecase optionEvan Gates1-0/+2
Add a global ignorecase boolean option. When set add REG_ICASE to cflags when calling text_regex_compile().
2020-08-01vis: remove ae outer entire text objectMarc André Tanner1-3/+0
Use :, which is a short hand for :0,$ instead.
2020-08-01vis: remove ie inner entire text objectMarc André Tanner1-3/+0
2020-08-01vis: remove z> rightmost pairwise selection combinatorMarc André Tanner1-2/+0
2020-08-01vis: remove z< leftmost pairwise selection combinatorMarc André Tanner1-2/+0
2020-08-01vis: remove z- shorter pairwise selection combinatorMarc André Tanner1-2/+0
2020-08-01vis: remove z+ longer pairwise selection combinatorMarc André Tanner1-2/+0
2020-08-01vis: remove z& pairwise selection intersectionMarc André Tanner1-2/+0
2020-08-01vis: remove z| pairwise unionMarc André Tanner1-2/+0
2020-08-01vis: use ~ instead of ! for selection complementMarc André Tanner1-1/+1
This seems more consistent with the typical set/bit operations.
2020-08-01vis: remove ~ as alias for g~Marc André Tanner1-3/+3
2020-07-17support for primary clipboardJeremy Bobbin1-0/+4
2020-04-28man: document theme locationMarc André Tanner1-0/+5
Fix #824
2020-02-24lua: add `redrawtime` optionGeorgi Kirilov1-0/+3
Upper bound lexing time and cancel highlighting if it is exceeded.
2020-02-12sam: support optional count for text commandsMarc André Tanner1-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-10vis-menu: use distinct error code upon cancelling selectionMarc André Tanner1-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-30man: fix mandoc linting warningsMarc André Tanner2-5/+5
These are reported by: mandoc -T lint
2020-01-30man: fix skipping empty macro warningsMarc André Tanner1-43/+43
2020-01-30man: fix mandoc warnings as reported by make manMarc André Tanner1-22/+26
2020-01-28vis: support an optional exit status in :q and :qall commandsMarc André Tanner1-3/+3
This can for example be used to abort git commit messages with :q! 1.
2020-01-23man: remove redundant layout option abbreviationKarl Schultheisz1-1/+1
2020-01-22add layout option to manpageKarl Schultheisz1-0/+3
2018-05-30vis: add loadmethod optionMarc André Tanner1-0/+11
Valid values are `read`, `mmap` or `auto`.
2018-05-30man: Mark command line arguments with .CmTwoFinger1-2/+2
2018-05-30man: Mark ranges with en-dashesTwoFinger1-8/+8
2018-05-30man: Mark a few parameters with .ArTwoFinger1-66/+78
2018-05-30man: Mark a few literals with .LiTwoFinger1-2/+4
2018-05-30man: Mark a few commands with .IcTwoFinger1-8/+10
2018-05-30man: Add a couple missing .IcTwoFinger1-2/+2
2018-05-30man: Add a missing paragraph separatorTwoFinger1-0/+1
2018-05-30man: Undocument a recently removed featureTwoFinger1-3/+0
2018-05-30man: This tip belongs to the last list itemTwoFinger1-1/+1
2018-05-17vis: make % motion match quotes and backticks as wellJavier Olaechea1-1/+1
Close #703 Fix #670
2018-05-16vis: remove gq alias for =Marc André Tanner1-3/+0
2018-03-26man: fix POSIX vi(1) referenceMarc André Tanner1-1/+2
Fix #687
2018-02-19man: add a note about the visrc.lua structure to vis.1Peter Nagy1-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-21Add a key combo example of mark usageJavier Olaechea1-0/+7