Skip to content

Commit a53f7cc

Browse files
authored
Merge pull request #2193 from h-east/update-usr_90
Update usr_90.{txt,jax}
2 parents b34d034 + cd66162 commit a53f7cc

File tree

2 files changed

+53
-88
lines changed

2 files changed

+53
-88
lines changed

doc/usr_90.jax

Lines changed: 28 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_90.txt* For Vim バージョン 9.1. Last change: 2025 Mar 03
1+
*usr_90.txt* For Vim バージョン 9.1. Last change: 2025 Jul 22
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -185,67 +185,52 @@ make とは別に "configure" を実行する方法もあります。オプシ
185185
==============================================================================
186186
*90.2* MS-Windows
187187

188-
Vim を Microsoft Windows にインストールする方法は二つあります。複数のアーカイ
189-
ブを展開するか、インストーラ形式の大きなアーカイブを使います。最近のコンピュー
190-
タを使っているほとんどのユーザーはインストーラを使います。複数のアーカイブを展
191-
開する方法には次のものが必要です:
188+
Microsoft Windows に Vim プログラムをインストールするには、いくつかの方法があ
189+
ります:
192190

193-
- Vim のバイナリが入ったアーカイブ
194-
- Vim のランタイムアーカイブ
195-
- zip ファイルを展開できるプログラム
191+
1. 公式サイトダウンロード (安定版)~
196192

197-
Vim のアーカイブを入手するには、次のファイルを見てダウンロード速度が最も早いで
198-
あろう近くのミラーを探してください:
193+
Vim の公式ウェブサイト https://www.vim.org にアクセスして、最新の安定版をダウ
194+
ンロードしてください。このサイトには、ほとんどのユーザーがすぐに使用できる
195+
Windows インストーラへのリンクがあります。
199196

200-
ftp://ftp.vim.org/pub/vim/MIRRORS
197+
2. winget (Windows パッケージマネージャー) の使用 ~
201198

202-
Vim のホームサイト ftp.vim.org で十分な速度が出るならそれでも構いません。"pc"
203-
ディレクトリにファイルが入っています。バージョン番号はファイル名に埋め込まれて
204-
います。特に事情がなければ最新のバージョンをダウンロードしてください。ここでは
205-
"82" (バージョン8.2) を使って説明します。
199+
コマンドラインの使用を好む場合、Windows の組み込みパッケージマネージャーを使っ
200+
て安定版の Vim を素早くインストールできます: >
206201
207-
gvim82.exe インストーラ
202+
winget install vim.vim
208203
209-
必要なのはこのファイルだけです。ファイルを実行し、表示される指示に従ってくださ
210-
い。
204+
または、最新のナイトリーバージョンをダウンロードするには、以下のコマンドを使用
205+
します: >
211206
212-
アーカイブを自分で展開する方法の場合、使用するアーカイブを選択する必要がありま
213-
す。次のものがあります:
207+
winget install vim.vim.nightly
214208
215-
gvim82.zip 普通の MS-Windows GUI バージョン。
216-
gvim82ole.zip OLE サポート付きの MS-Windows GUI バージョン。
217-
メモリを食いますが、他の OLE アプリケーション
218-
との通信をサポートしています。
219-
vim82w32.zip 32 ビット MS-Windows コンソールバージョン。
209+
この方法によって、最小限の手間で最新バージョンを入手できます。
220210

221-
必要なのはどれか一つだけです。GUI バージョンとコンソールバージョンを両方インス
222-
トールすることもできます。いずれの場合でも、さらにランタイムファイルのアーカイ
223-
ブをダウンロードする必要があります。
211+
3. GitHub インストーラ (すべてのアーキテクチャ) ~
224212

225-
vim82rt.zip ランタイムファイルのアーカイブ
213+
インストールをさらに制御するには (または ARM などの特定の CPU アーキテクチャを
214+
使用している場合)、公式 GitHub リポジトリにアクセスしてください:
226215

227-
zip 展開プログラムを使ってファイルを展開してください。例えば、"unzip" プログラ
228-
ムを使う場合は次のようにします: >
216+
https://github.com/vim/vim-win32-installer/
229217

230-
cd c:\
231-
unzip path\gvim82.zip
232-
unzip path\vim82rt.zip
218+
このリポジトリは、以下の毎日のインストーラとポータブル zip アーカイブを提供し
219+
ます:
233220

234-
この例では "c:\vim\vim82" にファイルが展開されます。既にどこかに vim という
235-
ディレクトリがある場合は、その親ディレクトリで実行してください。
236-
"vim\vim82" に移動して、install プログラムを実行します: >
221+
- x86 (32-bit)
222+
- x64 (64-bit)
223+
- ARM64
237224

238-
install
239-
240-
メッセージをよく読んでオプションを選択してください。最後に "do it" を選択する
241-
と、それまでの選択に従ってインストールが実行されます。
242-
インストールプログラムはランタイムファイルを移動しません。それらは展開した場所
243-
にあるままです。
225+
ナイトリービルドや特定の設定が必要な場合に最適なオプションです
244226

245227
提供されているバイナリに、必要な機能が不足している場合は、自分で Vim をコンパ
246228
イルしてみてください。ソースのアーカイブはバイナリと同じ場所にあります。対応す
247229
る Makefile が用意されているコンパイラも必要です。Microsoft Visual C, MinGW と
248230
Cygwin のコンパイラが使えます。詳しくは "src/INSTALLpc.txt" を見てください。
231+
ソースは以下から入手できます:
232+
233+
https://github.com/vim/vim
249234

250235
==============================================================================
251236
*90.3* アップグレード

en/usr_90.txt

Lines changed: 25 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_90.txt* For Vim version 9.1. Last change: 2025 Mar 03
1+
*usr_90.txt* For Vim version 9.1. Last change: 2025 Jul 22
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -189,69 +189,49 @@ source code yourself!
189189
==============================================================================
190190
*90.2* MS-Windows
191191

192-
There are two ways to install the Vim program for Microsoft Windows. You can
193-
uncompress several archives, or use a self-installing big archive. Most users
194-
with fairly recent computers will prefer the second method. For the first
195-
one, you will need:
192+
There are several ways to install the Vim program for Microsoft Windows:
196193

197-
- An archive with binaries for Vim.
198-
- The Vim runtime archive.
199-
- A program to unpack the zip files.
194+
1. Official Website Download (Stable)~
200195

201-
To get the Vim archives, look in this file for a mirror near you, this should
202-
provide the fastest download:
196+
Visit the official Vim website at https://www.vim.org to download the latest
197+
stable version. The site links to the Windows installer that works out of the
198+
box for most users.
203199

204-
ftp://ftp.vim.org/pub/vim/MIRRORS
200+
2. Using winget (Windows Package Manager) ~
205201

206-
Or use the home site ftp.vim.org, if you think it's fast enough. Go to the
207-
"pc" directory and you'll find a list of files there. The version number is
208-
embedded in the file name. You will want to get the most recent version.
209-
We will use "82" here, which is version 8.2.
202+
If you prefer using the command line, you can quickly install Vim using
203+
Windows' built-in package manager for the stable version: >
210204
211-
gvim82.exe The self-installing archive.
205+
winget install vim.vim
212206
213-
This is all you need for the second method. Just launch the executable, and
214-
follow the prompts.
207+
Or to download the latest nightly version, use: >
215208
216-
For the first method you must choose one of the binary archives. These are
217-
available:
209+
winget install vim.vim.nightly
218210
219-
gvim82.zip The normal MS-Windows GUI version.
220-
gvim82ole.zip The MS-Windows GUI version with OLE support.
221-
Uses more memory, supports interfacing with
222-
other OLE applications.
223-
vim82w32.zip 32 bit MS-Windows console version.
211+
This method ensures you get an up-to-date version with minimal hassle.
224212

225-
You only need one of them. Although you could install both a GUI and a
226-
console version. You always need to get the archive with runtime files.
213+
3. GitHub Installer (All Architectures) >
227214
228-
vim82rt.zip The runtime files.
215+
For more control over the installation (or if you're using a specific CPU
216+
architecture like ARM), visit the official GitHub repository:
229217

230-
Use your un-zip program to unpack the files. For example, using the "unzip"
231-
program: >
218+
https://github.com/vim/vim-win32-installer/
232219

233-
cd c:\
234-
unzip path\gvim82.zip
235-
unzip path\vim82rt.zip
220+
This repo provides daily installer and portable zip archives for:
236221

237-
This will unpack the files in the directory "c:\vim\vim82". If you already
238-
have a "vim" directory somewhere, you will want to move to the directory just
239-
above it.
240-
Now change to the "vim\vim82" directory and run the install program: >
222+
- x86 (32-bit)
223+
- x64 (64-bit)
224+
- ARM64
241225

242-
install
243-
244-
Carefully look through the messages and select the options you want to use.
245-
If you finally select "do it" the install program will carry out the actions
246-
you selected.
247-
The install program doesn't move the runtime files. They remain where you
248-
unpacked them.
226+
It’s a great option if you want nightly builds or specific configuration
249227

250228
In case you are not satisfied with the features included in the supplied
251229
binaries, you could try compiling Vim yourself. Get the source archive from
252230
the same location as where the binaries are. You need a compiler for which a
253231
makefile exists. Microsoft Visual C, MinGW and Cygwin compilers can be used.
254-
Check the file src/INSTALLpc.txt for hints.
232+
Check the file src/INSTALLpc.txt for hints. You can get the source from:
233+
234+
https://github.com/vim/vim
255235

256236
==============================================================================
257237
*90.3* Upgrading

0 commit comments

Comments
 (0)