You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Apply escape sequence coloring to output, e.g. ls --color
* Clean up syntax files for portability
* Fix several Vim 7.1 bugs
* Bugfixes for multiple shell buffers
* Add experimental shell folding option
Copy file name to clipboardExpand all lines: README.orig
+48-5Lines changed: 48 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,14 @@
1
1
2
-
CONQUE
2
+
Conque - Interactive shell buffer for Vim
3
3
4
-
== Requirements ==
4
+
version: 0.3
5
+
6
+
== REQUIREMENTS ==
5
7
6
8
* Python-enabled Vim 7.0+
7
9
* Some functionality only available on Linux-like system with pty libraries
8
10
9
-
== Installation Instructions ==
11
+
== INSTALLATION ==
10
12
11
13
Copy files from conque/ into your .vim directory, for example:
12
14
@@ -16,7 +18,7 @@ $HOME/.vim/autoload/conque.vim
16
18
$HOME/.vim/autoload/subprocess.vim
17
19
$HOME/.vim/autoload/subprocess/proc_py.vim
18
20
19
-
== Usage ==
21
+
== USAGE ==
20
22
21
23
Type :Conque <command> to run your command in vim, for example:
22
24
@@ -28,7 +30,27 @@ To open Conque in a new horizontal or vertical buffer use:
28
30
or
29
31
:ConqueVSplit <command>
30
32
31
-
== Troubleshooting ==
33
+
== CONFIG OPTIONS ==
34
+
35
+
The following options can be added to your .vimrc file. (Defaults shown below)
36
+
37
+
" Use '...' filler characters while waiting for a response. Prevents sending extra <CR>'s to the terminal, although in some cases that may be desirable.
38
+
" 1 = on, 0 = off
39
+
let g:Conque_Use_Filler = 1
40
+
41
+
" Return prompt to user after this many miliseconds without any new output from the terminal.
42
+
" Increasing this value will cause fewer '...' read timeouts, but will also make the terminal appear less responsive.
43
+
let g:Conque_Read_Timeout = 40
44
+
45
+
" Use this syntax type with Conque. The default is relatively stripped down, although it does provide good MySQL highlighting
46
+
let g:Conque_Syntax = 'conque'
47
+
48
+
" Allow commands plus their output to be folded. If the commands you run produce large amounts of output, folding
49
+
" them can make the terminal more readable. Very experimental. 1 = on, 0 = off
50
+
let g:Conque_Folding = 0
51
+
52
+
53
+
== TROUBLESHOOTING ==
32
54
33
55
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
56
@@ -44,3 +66,24 @@ The latest version of MacVim will have Python enabled. See http://code.google.co
44
66
45
67
Most installations of Vim 7+ these days come built with Python.
46
68
69
+
== CHANGELOG ==
70
+
71
+
- 0.3 / 2009-10-13 -
72
+
* Apply escape sequence coloring to output, e.g. ls --color
73
+
* Clean up syntax files for portability
74
+
* Fix several Vim 7.1 bugs
75
+
* Bugfixes for multiple shell buffers
76
+
* Add experimental shell folding option
77
+
78
+
- 0.2 / 2009-10-01
79
+
* Rewritten subprocess management module in python instead of c
80
+
* Added support for OS X, partial support for Windows
0 commit comments