aboutsummaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorFilesLines
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
2017-10-30man: remove outdated key mappingMarc André Tanner1-3/+0
Fix #622
2017-09-15man: fix typos and grammar issuesMarc André Tanner1-7/+5
2017-09-13vis.1: Surround with quotes link-name arguments of .LkJavier Olaechea1-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-14man: update manual page with recent developmentsMarc André Tanner1-89/+143
2017-06-27man: Fix a typoTwoFinger1-2/+2
2017-06-04Add option to hide EOF markerPhilipp Emanuel Weidmann1-0/+3
2017-05-17man: mention regex anchor behaviorMarc André Tanner1-0/+5
In vis ^ and $ always match the beginning / end of the range which they are applied to. This differs from sam where they only match at the beginning / end of a line. Close #554
2017-05-15man: mention `o` to change selection directionMarc André Tanner1-0/+3
2017-04-20vis: add # register to insert cursor numberMarc André Tanner1-0/+2
2017-04-12man: document new count specifier for `g` and `v` commandsMarc André Tanner1-4/+36
A few examples: :x g1 selects the first line :x g-1 selects the last line :x g-3, selects the last three lines :x g2,4 selects lines 2, 3 and 4 :x g,5 selects all lines up and including the fifth :x g6, selects all lines starting from the sixth :x g%2 selects all even lines :x v%2 selects all odd lines
2017-04-06Fix formatting in man pageTwoFinger1-2/+2
2017-04-02Fix Debian package lintian warningsMarc André Tanner4-5/+3
https://mentors.debian.net/package/vis
2017-03-17man: fix last mandoc linting warningMarc André Tanner1-1/+1
2017-03-16man/vis.1: semantic macros, homogenize formatJosuah Demangeon⠠⠵1-377/+533
vis.1: added modes description