Skip to content

Commit 7819148

Browse files
authored
Merge pull request #2376 from h-east/update-filetype
Update filetype.{txt,jax}
2 parents bdefaf0 + 9bb5bcf commit 7819148

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

doc/filetype.jax

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim バージョン 9.1. Last change: 2025 Sep 24
1+
*filetype.txt* For Vim バージョン 9.1. Last change: 2025 Oct 12
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar

en/filetype.txt

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 9.1. Last change: 2025 Sep 24
1+
*filetype.txt* For Vim version 9.1. Last change: 2025 Oct 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -530,12 +530,13 @@ g:changelog_new_date_format
530530
%% insert a single '%' character
531531
%d insert the date from above
532532
%u insert the user from above
533-
%p insert result of b:changelog_entry_prefix
533+
%p insert result of
534+
b:changelog_entry_prefix
534535
%c where to position cursor when done
535-
The default is "%d %u\n\n\t* %p%c\n\n", which produces
536-
something like (| is where cursor will be, unless at
537-
the start of the line where it denotes the beginning
538-
of the line) >
536+
The default is "%d %u\n\n\t* %p%c\n\n", which
537+
produces something like (| is where cursor will be,
538+
unless at the start of the line where it denotes the
539+
beginning of the line) >
539540
|2003-01-14 Full Name <user@host>
540541
|
541542
| * prefix|
@@ -544,7 +545,8 @@ g:changelog_new_entry_format
544545
The format used when creating a new entry.
545546
The following table describes special tokens in the
546547
string:
547-
%p insert result of b:changelog_entry_prefix
548+
%p insert result of
549+
b:changelog_entry_prefix
548550
%c where to position cursor when done
549551
The default is "\t*%c", which produces something
550552
similar to >
@@ -604,8 +606,9 @@ Options:
604606
'expandtab' is switched on to avoid tabs as required by the Fortran
605607
standards unless the user has set fortran_have_tabs in .vimrc.
606608
'textwidth' is set to 80 for fixed source format whereas it is set to 132
607-
for free source format. Setting the fortran_extended_line_length
608-
variable increases the width to 132 for fixed source format.
609+
for free source format. Setting the
610+
fortran_extended_line_length variable increases the width to
611+
132 for fixed source format.
609612
'formatoptions' is set to break code and comment lines and to preserve long
610613
lines. You can format comments with |gq|.
611614
For further discussion of fortran_have_tabs and the method used for the
@@ -889,7 +892,7 @@ not running man {name} if no page is found, then use this: >
889892
<
890893
*g:ft_man_implementation*
891894
The completion for the :Man command tries to guess which implementation of man
892-
the system has. If it guesses wrong, you can set g:ft_man_implementation to
895+
the system has. If it guesses wrong, you can set g:ft_man_implementation to
893896
one of these values:
894897
'man-db' https://man-db.nongnu.org/
895898
'' Unknown, fall back to completing shell commands
@@ -969,27 +972,27 @@ QF QUICKFIX *qf.vim* *ft-qf-plugin*
969972
The "qf" filetype is used for the quickfix window, see |quickfix-window|.
970973

971974
The quickfix filetype plugin includes configuration for displaying the command
972-
that produced the quickfix list in the |status-line|. To disable this setting,
975+
that produced the quickfix list in the |status-line|. To disable this setting,
973976
configure as follows: >
974977
:let g:qf_disable_statusline = 1
975978
976979
977980
R MARKDOWN *ft-rmd-plugin*
978981

979-
By default ftplugin/html.vim is not sourced. If you want it sourced, add to
982+
By default ftplugin/html.vim is not sourced. If you want it sourced, add to
980983
your |vimrc|: >
981984
let rmd_include_html = 1
982985
983986
The 'formatexpr' option is set dynamically with different values for R code
984-
and for Markdown code. If you prefer that 'formatexpr' is not set, add to your
985-
|vimrc|: >
987+
and for Markdown code. If you prefer that 'formatexpr' is not set, add to
988+
your |vimrc|: >
986989
let rmd_dynamic_comments = 0
987990
988991
989992
R RESTRUCTURED TEXT *ft-rrst-plugin*
990993

991994
The 'formatexpr' option is set dynamically with different values for R code
992-
and for ReStructured text. If you prefer that 'formatexpr' is not set, add to
995+
and for ReStructured text. If you prefer that 'formatexpr' is not set, add to
993996
your |vimrc|: >
994997
let rrst_dynamic_comments = 0
995998
@@ -1006,7 +1009,7 @@ To enable this behavior, set the following variable in your vimrc: >
10061009
RNOWEB *ft-rnoweb-plugin*
10071010

10081011
The 'formatexpr' option is set dynamically with different values for R code
1009-
and for LaTeX code. If you prefer that 'formatexpr' is not set, add to your
1012+
and for LaTeX code. If you prefer that 'formatexpr' is not set, add to your
10101013
|vimrc|: >
10111014
let rnw_dynamic_comments = 0
10121015
@@ -1100,8 +1103,8 @@ To disable this behavior, set |g:zig_recommended_style| to 0: >
11001103
let g:zig_recommended_style = 0
11011104
<
11021105
*g:zig_std_dir*
1103-
The path to the Zig standard library. The Zig |ftplugin| reads |g:zig_std_dir|
1104-
and appends it to the 'path' for Zig files. Where the Zig standard library
1106+
The path to the Zig standard library. The Zig |ftplugin| reads |g:zig_std_dir|
1107+
and appends it to the 'path' for Zig files. Where the Zig standard library
11051108
is located is system and installation method dependent.
11061109

11071110
One can automatically set |g:zig_std_dir| using `zig env`: >

0 commit comments

Comments
 (0)