0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

runtime(doc): Fix small style issues

closes: #14942

Signed-off-by: h-east <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
h-east 2024-06-09 16:32:19 +02:00 committed by Christian Brabandt
parent 5674c9a7de
commit 9c4389acc3
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
4 changed files with 29 additions and 29 deletions

View File

@ -1,4 +1,4 @@
*mbyte.txt* For Vim version 9.1. Last change: 2024 May 11
*mbyte.txt* For Vim version 9.1. Last change: 2024 Jun 09
VIM REFERENCE MANUAL by Bram Moolenaar et al.
@ -801,7 +801,7 @@ is suitable for complex input, such as CJK.
number of Hira-gana characters are 76. So, first, we pre-input text as
pronounced in Hira-gana, second, we convert Hira-gana to Kanji or Kata-Kana,
if needed. There are some Kana-Kanji conversion server: jserver
(distributed with Wnn, see below) and canna.Canna can be found at:
(distributed with Wnn, see below) and canna. Canna can be found at:
https://osdn.net/projects/canna/
There is a good input system: Wnn4.2. Wnn 4.2 contains,
@ -1356,7 +1356,7 @@ You might also want to select the font used for the menus. Unfortunately this
doesn't always work. See the system specific remarks below, and 'langmenu'.
USING UTF-8 IN X-Windows *utf-8-in-xwindows*
USING UTF-8 IN X-WINDOWS *utf-8-in-xwindows*
Note: This section does not apply to the GTK+ 2 GUI.

View File

@ -1,4 +1,4 @@
*quickfix.txt* For Vim version 9.1. Last change: 2024 Apr 28
*quickfix.txt* For Vim version 9.1. Last change: 2024 Jun 09
VIM REFERENCE MANUAL by Bram Moolenaar
@ -1335,7 +1335,7 @@ passed to make, say :make html or :make pdf.
Additional arguments can be passed to pandoc:
- either by appending them to make, say `:make html --self-contained` .
- or setting them in `b:pandoc_compiler_args` or `g:pandoc_compiler_args`
- or setting them in `b:pandoc_compiler_args` or `g:pandoc_compiler_args`.
PERL *quickfix-perl* *compiler-perl*

View File

@ -1,4 +1,4 @@
*syntax.txt* For Vim version 9.1. Last change: 2024 Jun 05
*syntax.txt* For Vim version 9.1. Last change: 2024 Jun 09
VIM REFERENCE MANUAL by Bram Moolenaar
@ -935,14 +935,14 @@ ASTRO *astro.vim* *ft-astro-syntax*
Configuration
The following variables control certain syntax highlighting features.
You can add them to your .vimrc: >
You can add them to your .vimrc.
To enables TypeScript and TSX for ".astro" files (default "disable"): >
let g:astro_typescript = "enable"
<
Enables TypeScript and TSX for ".astro" files. Default Value: "disable" >
To enables Stylus for ".astro" files (default "disable"): >
let g:astro_stylus = "enable"
<
Enables Stylus for ".astro" files. Default Value: "disable"
NOTE: You need to install an external plugin to support stylus in astro files.
@ -1909,7 +1909,7 @@ Note: Syntax folding might slow down syntax highlighting significantly,
especially for large files.
HTML/OS (by Aestiva) *htmlos.vim* *ft-htmlos-syntax*
HTML/OS (BY AESTIVA) *htmlos.vim* *ft-htmlos-syntax*
The coloring scheme for HTML/OS works as follows:

View File

@ -1,4 +1,4 @@
*usr_52.txt* For Vim version 9.1. Last change: 2024 May 31
*usr_52.txt* For Vim version 9.1. Last change: 2024 Jun 09
VIM USER MANUAL - by Bram Moolenaar
@ -341,7 +341,7 @@ will have to make sure to use a unique name for these global items. Example: >
COMMENT PACKAGE
Vim comes with a comment plugin, written in Vim9 script |comment-install|.
Vim comes with a comment plugin, written in Vim9 script. |comment-install|
Have a look at the package located at $VIMRUNTIME/pack/dist/opt/comment/
HIGHLIGHT YANK PLUGIN
@ -350,27 +350,27 @@ Here is an example for highlighting the yanked region. It makes use of the
|getregionpos()| function, available since Vim 9.1.0446.
Copy the following example into a new file and place it into your plugin directory
and it will be active next time you start Vim |add-plugin|: >
and it will be active next time you start Vim. |add-plugin|: >
vim9script
def HighlightedYank(hlgroup = 'IncSearch', duration = 300, in_visual = true)
if v:event.operator ==? 'y'
if !in_visual && visualmode() != null_string
visualmode(1)
return
endif
var [beg, end] = [getpos("'["), getpos("']")]
var type = v:event.regtype ?? 'v'
var pos = getregionpos(beg, end, {type: type})
var end_offset = (type == 'V' || v:event.inclusive) ? 1 : 0
var m = matchaddpos(hlgroup, pos->mapnew((_, v) => {
var col_beg = v[0][2] + v[0][3]
var col_end = v[1][2] + v[1][3] + end_offset
return [v[0][1], col_beg, col_end - col_beg]
}))
var winid = win_getid()
timer_start(duration, (_) => m->matchdelete(winid))
if !in_visual && visualmode() != null_string
visualmode(1)
return
endif
var [beg, end] = [getpos("'["), getpos("']")]
var type = v:event.regtype ?? 'v'
var pos = getregionpos(beg, end, {type: type})
var end_offset = (type == 'V' || v:event.inclusive) ? 1 : 0
var m = matchaddpos(hlgroup, pos->mapnew((_, v) => {
var col_beg = v[0][2] + v[0][3]
var col_end = v[1][2] + v[1][3] + end_offset
return [v[0][1], col_beg, col_end - col_beg]
}))
var winid = win_getid()
timer_start(duration, (_) => m->matchdelete(winid))
endif
enddef