1
- *develop.txt* For Vim version 9.1. Last change: 2025 Sep 04
1
+ *develop.txt* For Vim version 9.1. Last change: 2025 Sep 07
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -448,13 +448,13 @@ For everything else use: >
448
448
449
449
INDENTATION *style-indentation*
450
450
451
- We use 4 space to indent the code. If you are using Vim to edit the source,
451
+ We use 4 space to indent the code. If you are using Vim to edit the source,
452
452
you don't need to do anything due to the | modeline | .
453
453
454
454
For other editors an `.editorconfig` is provided at the root of the repo.
455
455
456
456
For the source files `sign .c ` and `sound.c ` and any new file use only spaces,
457
- no tabs. In addition, any new file must include a modeline with `set et` to
457
+ no tabs. In addition, any new file must include a modeline with `set et` to
458
458
pass the indentation test.
459
459
460
460
@@ -539,7 +539,7 @@ Wrong: >
539
539
540
540
TYPES *style-types*
541
541
542
- Use descriptive types. These are defined in src/vim.h, src/structs.h etc.
542
+ Use descriptive types. These are defined in src/vim.h, src/structs.h etc.
543
543
Note that all custom types are postfixed with "_T"
544
544
545
545
Example: >
@@ -739,7 +739,7 @@ number in order to reference each specific patch release. A typical
739
739
development release cycle may last several years and accumulate about 1500 -
740
740
2500 patch numbers.
741
741
742
- Before a release is made, a stability period will be announced. During this
742
+ Before a release is made, a stability period will be announced. During this
743
743
time, only clear bug fixes, security fixes, documentation changes, translation
744
744
updates and runtime file updates will be accepted (provided they do not
745
745
introduce backwards-incompatible changes), concentrating on polishing up the
@@ -755,8 +755,8 @@ preserve compatibility for the C core of Vim. Runtime files are handled a bit
755
755
more flexibly to give runtime files maintainers a chance to change old
756
756
behaviour.
757
757
758
- Within a development cycle, features may be marked as deprecated. Deprecated
759
- features can be disabled at compile time through an appropriate switch. After
758
+ Within a development cycle, features may be marked as deprecated. Deprecated
759
+ features can be disabled at compile time through an appropriate switch. After
760
760
a new release, deprecated features may be removed completely in a following
761
761
cycle.
762
762
0 commit comments