Skip to content

Commit 426189d

Browse files
nicoraffovim-scripts
authored andcommitted
Version 0.2
* New subprocess management in Python instead of C * Stronger support in OS X and Windows * Faster/less buggy tab completion * Support for multiple shell buffers
1 parent 4a2bc45 commit 426189d

24 files changed

+785
-3168
lines changed

INSTALL

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,44 @@ CONQUE
33

44
== Requirements ==
55

6-
* Vim 7.0+
7-
* Linux-like system with pty libraries
6+
* Python-enabled Vim 7.0+
7+
* Some functionality only available on Linux-like system with pty libraries
88

99
== Installation Instructions ==
1010

1111
Copy files from conque/ into your .vim directory, for example:
1212

13-
$HOME/.vim/autoload/conque.vim
14-
$HOME/.vim/autoload/proc.vim
15-
$HOME/.vim/autoload/proc.so
1613
$HOME/.vim/plugin/conque.vim
1714
$HOME/.vim/syntax/conque.vim
15+
$HOME/.vim/autoload/conque.vim
16+
$HOME/.vim/autoload/subprocess.vim
17+
$HOME/.vim/autoload/subprocess/proc_py.vim
1818

1919
== Usage ==
2020

2121
Type :Conque <command> to run your command in vim, for example:
2222

2323
:Conque bash
2424

25+
To open Conque in a new horizontal or vertical buffer use:
26+
27+
:ConqueSplit <command>
28+
or
29+
:ConqueVSplit <command>
30+
2531
== Troubleshooting ==
2632

27-
The most likely cause of trouble will be an incompatible proc.so binary. The provided file should work on most Linux installations, but if you are having trouble it can be built by hand.
33+
The most common problem will be not having Python enabled in your installation of Vim. Recent versions of Vim should come with Python enabled by default. To check for Python, run the ":version" command and check for "+python". If instead you see "-python" or "+python/dyn", it may mean you will need to install it.
34+
35+
- Windows -
36+
37+
The default installation of GVim on Windows comes with "+python/dyn", which means python can be installed independently of Vim and loaded at runtime. Towards the bottom of the ":version" command in the "Compilation" section, look for a config option that looks something like -DDYNAMIC_PYTHON_DLL="python24.dll". This will let you know which version of python you need to install, in this case version 2.4. Go to http://www.python.org/ to download the version that your installation of Vim requires. NOTE: installing an earlier or newer version will probably not work.
38+
39+
- Mac -
40+
41+
The latest version of MacVim will have Python enabled. See http://code.google.com/p/macvim/
42+
43+
- Linux -
2844

29-
Go to the vimproc/ directory and run the command 'make'. Then copy the resulting proc.so from vimproc/autoload/proc.so to $HOME/.vim/autoload/proc.so
45+
Most installations of Vim 7+ these days come built with Python.
3046

0 commit comments

Comments
 (0)