Mercurial > vim
annotate runtime/doc/doctags.vim @ 31680:24d9c23bf665 v9.0.1172
patch 9.0.1172: when 'selection' is "exclusive" then "1v" is one char short
Commit: https://github.com/vim/vim/commit/79c11e399be3d96ed6d1c7458b1380e878ec717b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 10 17:29:29 2023 +0000
patch 9.0.1172: when 'selection' is "exclusive" then "1v" is one char short
Problem: When 'selection' is "exclusive" then "1v" is one char short.
Solution: Add one character when 'selection' is "exclusive. (closes https://github.com/vim/vim/issues/11791)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 10 Jan 2023 18:30:04 +0100 |
parents | 27ff44268da5 |
children |
rev | line source |
---|---|
18487
5b95ccb82c0a
patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " This script makes a tags file for help text. |
5b95ccb82c0a
patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 " |
5b95ccb82c0a
patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 " Usage: vim -eX -u doctags.vim |
5b95ccb82c0a
patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 |
19161
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
5 try |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
6 helptags ++t . |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
7 echo 'help tags updated' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
8 catch |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
9 echo v:exception |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
10 echo 'help tags failed update' |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
11 endtry |
27ff44268da5
patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents:
18487
diff
changeset
|
12 echo '' |
18487
5b95ccb82c0a
patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 qa! |