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
@@ -34,7 +35,7 @@ To open Conque in a new horizontal or vertical buffer use:
34
35
:ConqueSplit <command>
35
36
:ConqueVSplit <command>
36
37
37
-
Use insert mode to send commands to the shell. Use the <Tab> key to get more output from the shell. Conque is set to only a 40 milisecond timeout by default, so you will likely need to use the <Tab> key frequently.
38
+
Use insert mode to send commands to the shell. Use the <Tab> key to get more output from the shell. Conque is set to a 40 milisecond timeout by default, so you will likely need to use the <Tab> key frequently.
38
39
39
40
== CONFIG OPTIONS ==
40
41
@@ -48,15 +49,15 @@ let g:Conque_Read_Timeout = 40
48
49
let g:Conque_Syntax = 'conque'
49
50
50
51
" Terminal identification
51
-
" Leaving this value as "dumb" may make the terminal slightly faster.
52
+
" Leaving this value as "dumb" will cause the fewest formatting errors, and may make the terminal slightly faster.
52
53
" Setting it to "xterm" will enable more features.
53
54
let g:Conque_TERM = 'dumb'
54
55
55
56
== KNOWN ISSUES ==
56
57
57
-
* Conque does not continuously poll your program for new output. If you are expecting more output but nothing is happening, press <Tab> to get more.
58
-
* Tab completion and history navigation may start to break down when your command is longer than the width of the screen. Setting g:Conque_TERM = 'xterm' in your .vimrc will usually correct this issue.
59
58
* Most complex, full-screen applications will not work in Conque. You will not be able to launch programs such as alpine using Conque.
59
+
* Conque does not continuously poll your program for new output. If you are expecting more output but nothing is happening, press <Tab> to get more.
60
+
* Tab completion and history navigation may start to break down when your command is longer than the width of the screen. This will get fixed in a future version. Tab completion is generally squirrely in zsh for some reason, and it may require you to use TERM=xterm in (t)csh.
60
61
* Some Ubuntu users have been able to load Conque on the terminal Vim, but not using graphical GVim. Two Ubuntu and one Kubuntu install later I haven't been able to reproduce this. If it happens to you, please send me an email with your :version output and operating system version.
61
62
62
63
== TROUBLESHOOTING ==
@@ -77,6 +78,10 @@ Most installations of Vim 7+ these days come built with Python.
77
78
78
79
== CHANGELOG ==
79
80
81
+
-0.5 / 2009-12-01
82
+
* rewritten, faster escape sequece proecessing
83
+
* bugfixes
84
+
80
85
- 0.4 / 2009-10-29
81
86
* Improved history and tab completion
82
87
* Fix escape sequence formatting and improve highlighting
@@ -86,7 +91,7 @@ Most installations of Vim 7+ these days come built with Python.
86
91
* Add key mappings for <C-p> <C-n> <C-l> <C-j>
87
92
* Various bugfixes
88
93
89
-
- 0.3 / 2009-10-13
94
+
- 0.3 / 2009-10-13 -
90
95
* Apply escape sequence coloring to output, e.g. ls --color
0 commit comments