Skip to content

Commit 6820a1f

Browse files
committed
Update by original
1 parent d479b48 commit 6820a1f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

doc/develop.jax

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

33

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

en/develop.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -448,13 +448,13 @@ For everything else use: >
448448

449449
INDENTATION *style-indentation*
450450

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,
452452
you don't need to do anything due to the |modeline|.
453453

454454
For other editors an `.editorconfig` is provided at the root of the repo.
455455

456456
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
458458
pass the indentation test.
459459

460460

@@ -539,7 +539,7 @@ Wrong: >
539539

540540
TYPES *style-types*
541541

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.
543543
Note that all custom types are postfixed with "_T"
544544

545545
Example: >
@@ -739,7 +739,7 @@ number in order to reference each specific patch release. A typical
739739
development release cycle may last several years and accumulate about 1500 -
740740
2500 patch numbers.
741741

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
743743
time, only clear bug fixes, security fixes, documentation changes, translation
744744
updates and runtime file updates will be accepted (provided they do not
745745
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
755755
more flexibly to give runtime files maintainers a chance to change old
756756
behaviour.
757757

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
760760
a new release, deprecated features may be removed completely in a following
761761
cycle.
762762

0 commit comments

Comments
 (0)