Skip to content

Commit 4c92e75

Browse files
committed
Update runtime files.
1 parent a548344 commit 4c92e75

39 files changed

Lines changed: 984 additions & 361 deletions

nsis/lang/danish.nsi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ LangString str_group_plugin ${LANG_DANISH} "Opret plugin-mapper"
7474
LangString str_desc_plugin ${LANG_DANISH} "Opret plugin-mapper. Plugin-mapper giver mulighed for at udvide Vim ved at slippe en fil i en mappen."
7575

7676
LangString str_section_plugin_home ${LANG_DANISH} "Private"
77-
LangString str_desc_plugin_home ${LANG_DANISH} "Opret plugin-mapper i HOME-mappen."
77+
LangString str_desc_plugin_home ${LANG_DANISH} "Opret plugin-mapper i HOME (hvis du har defineret et) eller Vim-installationsmappe."
7878

7979
LangString str_section_plugin_vim ${LANG_DANISH} "Delte"
8080
LangString str_desc_plugin_vim ${LANG_DANISH} "Opret plugin-mapper i Vim-installationsmappe, det bruges af alle på systemet."
@@ -92,9 +92,9 @@ LangString str_unsection_exe ${LANG_DANISH} "Fjern Vim-eksekverbare-/
9292
LangString str_desc_rm_exe ${LANG_DANISH} "Fjern alle Vim-eksekverbare- og afviklingsfiler."
9393

9494
LangString str_ungroup_plugin ${LANG_DANISH} "Fjern plugin-mapper"
95-
LangString str_desc_rm_plugin ${LANG_DANISH} "Fjern plugin-mapperne hvis de er tomme."
95+
LangString str_desc_rm_plugin ${LANG_DANISH} "Fjern plugin-mapperne, hvis de er tomme."
9696

97-
LangString str_unsection_plugin_home ${LANG_DANISH} "Privat"
97+
LangString str_unsection_plugin_home ${LANG_DANISH} "Private"
9898
LangString str_desc_rm_plugin_home ${LANG_DANISH} "Fjern plugin-mapperne fra HOME-mappen."
9999

100100
LangString str_unsection_plugin_vim ${LANG_DANISH} "Delte"
@@ -164,9 +164,9 @@ LangString str_msg_compat_defaults ${LANG_DANISH} "Vim med nogle forbedringe
164164
LangString str_msg_compat_all ${LANG_DANISH} "Vim med alle forbedringer (indlæs vimrc_example.vim) (standard)"
165165

166166
LangString str_msg_keymap_title ${LANG_DANISH} " Tilknytninger "
167-
LangString str_msg_keymap_desc ${LANG_DANISH} "&Gentilknyt nogle få taster (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F osv.)"
167+
LangString str_msg_keymap_desc ${LANG_DANISH} "&Gentilknyt nogle få taster for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F osv.)"
168168
LangString str_msg_keymap_default ${LANG_DANISH} "Gentilknyt ikke taster (standard)"
169-
LangString str_msg_keymap_windows ${LANG_DANISH} "Gentilknyt nogle få taster til Windows"
169+
LangString str_msg_keymap_windows ${LANG_DANISH} "Gentilknyt nogle få taster"
170170

171171
LangString str_msg_mouse_title ${LANG_DANISH} " Mus "
172172
LangString str_msg_mouse_desc ${LANG_DANISH} "&Opførsel af højre og venstre knapper"

runtime/doc/change.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim version 8.1. Last change: 2018 Dec 14
1+
*change.txt* For Vim version 8.1. Last change: 2019 Feb 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -640,11 +640,11 @@ For other systems the tmpnam() library function is used.
640640
For the {pattern} see |pattern|.
641641
{string} can be a literal string, or something
642642
special; see |sub-replace-special|.
643-
*E939*
644643
When [range] and [count] are omitted, replace in the
645644
current line only. When [count] is given, replace in
646645
[count] lines, starting with the last line in [range].
647646
When [range] is omitted start in the current line.
647+
*E939*
648648
[count] must be a positive number. Also see
649649
|cmdline-ranges|.
650650

runtime/doc/develop.txt

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*develop.txt* For Vim version 8.1. Last change: 2018 May 02
1+
*develop.txt* For Vim version 8.1. Last change: 2019 Feb 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -355,6 +355,24 @@ OK: if (cond)
355355
cmd;
356356
}
357357

358+
When a block has one line the braces can be left out. When an if/else has
359+
braces on one block, it usually looks better when the other block also has
360+
braces:
361+
OK: if (cond)
362+
cmd;
363+
else
364+
cmd;
365+
366+
OK: if (cond)
367+
{
368+
cmd;
369+
}
370+
else
371+
{
372+
cmd;
373+
cmd;
374+
}
375+
358376
Use ANSI (new style) function declarations with the return type on a separate
359377
indented line.
360378

@@ -367,10 +385,10 @@ OK: /*
367385
*/
368386
int
369387
function_name(
370-
int arg1, /* short comment about arg1 */
371-
int arg2) /* short comment about arg2 */
388+
int arg1, // short comment about arg1
389+
int arg2) // short comment about arg2
372390
{
373-
int local; /* comment about local */
391+
int local; // comment about local
374392

375393
local = arg1 * arg2;
376394

runtime/doc/digraph.txt

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*digraph.txt* For Vim version 8.1. Last change: 2018 Dec 14
1+
*digraph.txt* For Vim version 8.1. Last change: 2019 Feb 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -59,18 +59,9 @@ conversion to be available, it might fail. For the NUL character you will see
5959
"10". That's because NUL characters are internally represented with a NL
6060
character. When you write the file it will become a NUL character.
6161

62-
When Vim was compiled without the |+multi_byte| feature, you need to specify
63-
the character in the encoding given with 'encoding'. You might want to use
64-
something like this: >
65-
66-
if has("multi_byte")
67-
digraph oe 339
68-
elseif &encoding == "iso-8859-15"
69-
digraph oe 189
70-
endif
71-
72-
This defines the "oe" digraph for a character that is number 339 in Unicode
73-
and 189 in latin9 (iso-8859-15).
62+
Example: >
63+
digraph oe 339
64+
This defines the "oe" digraph for a character that is number 339 in Unicode.
7465

7566
==============================================================================
7667
2. Using digraphs *digraphs-use*
@@ -164,8 +155,7 @@ a standard meaning:
164155
Example: a: is ä and o: is ö
165156

166157
These are the RFC1345 digraphs for the one-byte characters. See the output of
167-
":digraphs" for the others. The characters above 255 are only available when
168-
Vim was compiled with the |+multi_byte| feature.
158+
":digraphs" for the others.
169159

170160
EURO
171161

runtime/doc/eval.txt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.1. Last change: 2019 Feb 03
1+
*eval.txt* For Vim version 8.1. Last change: 2019 Feb 16
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -5538,7 +5538,6 @@ iconv({expr}, {from}, {to}) *iconv()*
55385538
< Note that Vim uses UTF-8 for all Unicode encodings, conversion
55395539
from/to UCS-2 is automatically changed to use UTF-8. You
55405540
cannot use UCS-2 in a string anyway, because of the NUL bytes.
5541-
{only available when compiled with the |+multi_byte| feature}
55425541

55435542
*indent()*
55445543
indent({lnum}) The result is a Number, which is indent of line {lnum} in the
@@ -6816,8 +6815,7 @@ printf({fmt}, {expr1} ...) *printf()*
68166815
*printf-S*
68176816
S The text of the String argument is used. If a
68186817
precision is specified, no more display cells than the
6819-
number specified are used. Without the |+multi_byte|
6820-
feature works just like 's'.
6818+
number specified are used.
68216819

68226820
*printf-f* *E807*
68236821
f F The Float argument is converted into a string of the
@@ -8611,10 +8609,10 @@ strcharpart({src}, {start} [, {len}]) *strcharpart()*
86118609

86128610
strdisplaywidth({expr} [, {col}]) *strdisplaywidth()*
86138611
The result is a Number, which is the number of display cells
8614-
String {expr} occupies on the screen when it starts at {col}.
8615-
When {col} is omitted zero is used. Otherwise it is the
8616-
screen column where to start. This matters for Tab
8617-
characters.
8612+
String {expr} occupies on the screen when it starts at {col}
8613+
(first column is zero). When {col} is omitted zero is used.
8614+
Otherwise it is the screen column where to start. This
8615+
matters for Tab characters.
86188616
The option settings of the current window are used. This
86198617
matters for anything that's displayed differently, such as
86208618
'tabstop' and 'display'.
@@ -10272,7 +10270,7 @@ mouse_sgr Compiled with support for sgr mouse.
1027210270
mouse_urxvt Compiled with support for urxvt mouse.
1027310271
mouse_xterm Compiled with support for xterm mouse.
1027410272
mouseshape Compiled with support for 'mouseshape'.
10275-
multi_byte Compiled with support for 'encoding'
10273+
multi_byte Compiled with support for 'encoding' (always true)
1027610274
multi_byte_encoding 'encoding' is set to a multi-byte encoding.
1027710275
multi_byte_ime Compiled with support for IME input method.
1027810276
multi_lang Compiled with support for multiple languages.

runtime/doc/filetype.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,15 @@ your |vimrc|: >
663663
let rrst_dynamic_comments = 0
664664
665665
666+
RESTRUCTUREDTEXT *ft-rst-plugin*
667+
668+
The following formatting setting are optionally available: >
669+
setlocal expandtab shiftwidth=3 softtabstop=3 tabstop=8
670+
671+
To enable this behavior, set the following variable in your vimrc: >
672+
let g:rst_style = 1
673+
674+
666675
RPM SPEC *ft-spec-plugin*
667676

668677
Since the text for this plugin is rather long it has been put in a separate

runtime/doc/mbyte.txt

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ For an introduction to the most common features, see |usr_45.txt| in the user
1414
manual.
1515
For changing the language of messages and menus see |mlang.txt|.
1616

17-
{not available when compiled without the |+multi_byte| feature}
18-
19-
2017
1. Getting started |mbyte-first|
2118
2. Locale |mbyte-locale|
2219
3. Encoding |mbyte-encoding|
@@ -44,16 +41,6 @@ features. Unfortunately, every system has its own way to deal with multibyte
4441
languages and it is quite complicated.
4542

4643

47-
COMPILING
48-
49-
If you already have a compiled Vim program, check if the |+multi_byte| feature
50-
is included. The |:version| command can be used for this.
51-
52-
If +multi_byte is not included, you should compile Vim with "normal", "big" or
53-
"huge" features. You can further tune what features are included. See the
54-
INSTALL files in the source directory.
55-
56-
5744
LOCALE
5845

5946
First of all, you must make sure your current locale is set correctly. If

0 commit comments

Comments
 (0)