public
Description: A vim GUI implementation in Cocoa, for Mac OS X.
Homepage: http://code.google.com/p/vim-cocoa
Clone URL: git://github.com/jjgod/vim-cocoa.git
vim-cocoa / README_os2.txt
100644 59 lines (45 sloc) 2.027 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
README_os2.txt for version 7.2 of Vim: Vi IMproved.
 
This file explains the installation of Vim on OS/2 systems.
See "README.txt" for general information about Vim.
 
 
NOTE: You will need two archives:
  vim72rt.zip contains the runtime files (same as for the PC version)
  vim72os2.zip contains the OS/2 executables
 
1. Go to the directory where you want to put the Vim files. Examples:
cd C:\
cd D:\editors
 
2. Unpack the zip archives. This will create a new directory "vim/vim72",
   in which all the distributed Vim files are placed. Since the directory
   name includes the version number, it is unlikely that you overwrite
   existing files.
   Examples:
pkunzip -d vim72os2.zip
unzip vim72os2.zip
 
   After you unpacked the files, you can still move the whole directory tree
   to another location.
 
3. Add the directory where vim.exe is to your path. The simplest is to add a
   line to your autoexec.bat. Examples:
set path=%path%;C:\vim\vim72
set path=%path%;D:\editors\vim\vim72
 
That's it!
 
 
Extra remarks:
 
- To avoid confusion between distributed files of different versions and your
  own modified vim scripts, it is recommended to use this directory layout:
  ("C:\vim" is used here as the root, replace with the path you use)
  Your own files:
C:\vim\_vimrc Your personal vimrc.
C:\vim\_viminfo Dynamic info for 'viminfo'.
C:\vim\... Other files you made.
  Distributed files:
C:\vim\vim72\vim.exe The Vim version 7.1 executable.
C:\vim\vim72\doc\*.txt The version 7.1 documentation files.
C:\vim\vim72\bugreport.vim A Vim version 7.1 script.
C:\vim\vim72\... Other version 7.1 distributed files.
  In this case the $VIM environment variable would be set like this:
set VIM=C:\vim
 
- You can put your Vim executable anywhere else. If the executable is not
  with the other distributed Vim files, you should set $VIM. The simplest is
  to add a line to your autoexec.bat. Examples:
set VIM=c:\vim
set VIM=d:\editors\vim
 
For further information, type this inside Vim:
:help os2