Skip to content

Commit 4a2bc45

Browse files
nicoraffovim-scripts
authored andcommitted
Version 0.1: Initial upload
0 parents  commit 4a2bc45

22 files changed

+3653
-0
lines changed

INSTALL

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
CONQUE
3+
4+
== Requirements ==
5+
6+
* Vim 7.0+
7+
* Linux-like system with pty libraries
8+
9+
== Installation Instructions ==
10+
11+
Copy files from conque/ into your .vim directory, for example:
12+
13+
$HOME/.vim/autoload/conque.vim
14+
$HOME/.vim/autoload/proc.vim
15+
$HOME/.vim/autoload/proc.so
16+
$HOME/.vim/plugin/conque.vim
17+
$HOME/.vim/syntax/conque.vim
18+
19+
== Usage ==
20+
21+
Type :Conque <command> to run your command in vim, for example:
22+
23+
:Conque bash
24+
25+
== Troubleshooting ==
26+
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.
28+
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
30+

README

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
This is a mirror of http://www.vim.org/scripts/script.php?script_id=2771
2+
3+
Conque is a Vim plugin allowing users to execute and interact with programs, typically a shell such as bash, inside a buffer window. The goal is always to keep the terminal behavior as close as possible to its native interface, while adding the additional features of Vim on top.
4+
5+
== WEBSITE ==
6+
7+
For more information http://code.google.com/p/conque/
8+
9+
== SCREENSHOTS ==
10+
11+
http://Conque.googlecode.com/svn/wiki/screenshot/colors.jpg
12+
http://Conque.googlecode.com/svn/wiki/screenshot/mysql.jpg
13+
http://Conque.googlecode.com/svn/wiki/screenshot/send.jpg
14+
http://Conque.googlecode.com/svn/wiki/screenshot/shells.jpg
15+
16+
== USAGE ==
17+
18+
Type :ConqueTerm <command> to run your command in vim, for example:
19+
20+
:ConqueTerm bash
21+
:ConqueTerm mysql -h localhost -u joe -p sock_collection
22+
:ConqueTerm ipython
23+
24+
To open ConqueTerm in a new horizontal or vertical buffer use:
25+
26+
:ConqueTermSplit <command>
27+
:ConqueTermVSplit <command>
28+
:ConqueTermTab <command>
29+
30+
All text typed in insert mode will be sent to your shell. Use the <F9> key to send a visual selection from any buffer to the shell.
31+
32+
For more help type :help ConqueTerm
33+

0 commit comments

Comments
 (0)