]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Fix small style issues
authorh-east <h.east.727@gmail.com>
Sun, 9 Jun 2024 14:32:19 +0000 (16:32 +0200)
committerChristian Brabandt <cb@256bit.org>
Sun, 9 Jun 2024 14:32:48 +0000 (16:32 +0200)
closes: #14942

Signed-off-by: h-east <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/mbyte.txt
runtime/doc/quickfix.txt
runtime/doc/syntax.txt
runtime/doc/usr_52.txt

index e38c30cb19cb7e807a400806a9771226dc1b0c08..3bb2bfbf1d8b14a0d736ea257b05e589a0021ba9 100644 (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.
 
index f0c1d74d470205ba354f35bd80c72f2729deac2c..7f3654c9ba46f40fe61b0a2bd227b5da3430dd2f 100644 (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*
 
index 1bc556c46df76367b1259dd7bb4b66b0ade4e4ff..b6b3d8e6ed71a20874cb08c9c4d13c1cb58f1cc0 100644 (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:
 
index 553ed88cf38205b64215f93f01fafe73ad5e5daf..d5062e2e3a8d830935a40db2d9ff6161903343a0 100644 (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