@@ -27,16 +27,15 @@ Contents
27
27
3.1.1 Python version | ConqueTerm_PyVersion |
28
28
3.1.2 Fast mode | ConqueTerm_FastMode |
29
29
3.1.3 Color support | ConqueTerm_Color |
30
- 3.1.4 Session Support | ConqueTerm_SessionSupport |
31
- 3.1.5 Keep updating terminal buffer | ConqueTerm_ReadUnfocused |
32
- 3.1.6 Insert mode when entering buffer | ConqueTerm_InsertOnEnter |
33
- 3.1.7 Close buffer when program exits | ConqueTerm_CloseOnEnd |
34
- 3.1.8 Hide start messages | ConqueTerm_StartMessages |
35
- 3.1.9 Regex for prompt highlighting | ConqueTerm_PromptRegex |
36
- 3.1.10 Syntax type | ConqueTerm_Syntax |
37
- 3.1.11 The bell Vim message | ConqueTerm_ShowBell |
38
- 3.1.12 Unfocused update time | ConqueTerm_UnfocusedUpdateTime |
39
- 3.1.13 Focused update time | ConqueTerm_FocusedUpdateTime |
30
+ 3.1.4 Keep updating terminal buffer | ConqueTerm_ReadUnfocused |
31
+ 3.1.5 Insert mode when entering buffer | ConqueTerm_InsertOnEnter |
32
+ 3.1.6 Close buffer when program exits | ConqueTerm_CloseOnEnd |
33
+ 3.1.7 Hide start messages | ConqueTerm_StartMessages |
34
+ 3.1.8 Regex for prompt highlighting | ConqueTerm_PromptRegex |
35
+ 3.1.9 Syntax type | ConqueTerm_Syntax |
36
+ 3.1.10 The bell Vim message | ConqueTerm_ShowBell |
37
+ 3.1.11 Unfocused update time | ConqueTerm_UnfocusedUpdateTime |
38
+ 3.1.12 Focused update time | ConqueTerm_FocusedUpdateTime |
40
39
3.2 Keyboard | conque-keyboard |
41
40
3.3.1 The <Esc> key | ConqueTerm_EscKey |
42
41
3.3.2 The <C-c> mapping | ConqueTerm_Interrupt |
@@ -258,37 +257,22 @@ Note: Color support is automatically disabled in "fast mode".
258
257
>
259
258
let g:ConqueTerm_Color = 1
260
259
<
261
- 3.1.4 Session Support *ConqueTerm_SessionSupport*
262
-
263
- Vim's :mksession command allows you to save your current buffer configuration
264
- to a file, which can be loaded at a later time after you've closed Vim.
265
-
266
- By default, Conque buffers are not restored. This is mostly for safety
267
- reasons; you may not want Vim to automatically re-run a destructive command.
268
-
269
- However, if you're not working with missile launch code, and want Vim to
270
- restart your Conque buffers when you load a session file, set this variable
271
- to 1. Note your original subprocess and shell output will not be restored, but
272
- the same command will be started in your buffer.
273
- >
274
- let g:ConqueTerm_SessionSupport = 0
275
- <
276
- 3.1.5 Keep updating terminal buffer *ConqueTerm_ReadUnfocused*
260
+ 3.1.4 Keep updating terminal buffer *ConqueTerm_ReadUnfocused*
277
261
278
262
If set to 1 then your Conque buffers will continue to update after you've
279
263
switched to another buffer.
280
264
>
281
265
let g:ConqueTerm_ReadUnfocused = 0
282
266
<
283
- 3.1.6 Insert mode when entering buffer *ConqueTerm_InsertOnEnter*
267
+ 3.1.5 Insert mode when entering buffer *ConqueTerm_InsertOnEnter*
284
268
285
269
If set to 1 then you will automatically go into insert mode when you enter the
286
270
buffer. This diverges from normal Vim behavior. If 0 you will still be in
287
271
normal mode.
288
272
>
289
273
let g:ConqueTerm_InsertOnEnter = 0
290
274
<
291
- 3.1.7 Close buffer when program exits *ConqueTerm_CloseOnEnd*
275
+ 3.1.6 Close buffer when program exits *ConqueTerm_CloseOnEnd*
292
276
293
277
If you want your terminal buffer to be closed and permanently deleted when the
294
278
program running inside of it exits, set this option to 1. Otherwise the buffer
@@ -297,14 +281,14 @@ program output in insert mode.
297
281
>
298
282
let g:ConqueTerm_CloseOnEnd = 0
299
283
<
300
- 3.1.8 Show start messages *ConqueTerm_StartMessages*
284
+ 3.1.7 Show start messages *ConqueTerm_StartMessages*
301
285
302
286
Display warning messages when starting up ConqueTerm if your system is
303
287
configured incorrectly.
304
288
>
305
289
let g:ConqueTerm_StartMessages = 1
306
290
<
307
- 3.1.9 Regex for highlighting your prompt *ConqueTerm_PromptRegex*
291
+ 3.1.8 Regex for highlighting your prompt *ConqueTerm_PromptRegex*
308
292
309
293
Use this regular expression for sytax highlighting your terminal prompt. Your
310
294
terminal will generally run faster if you use Vim highlighting instead of
@@ -313,21 +297,21 @@ syntax highlighting for the prompt line.
313
297
>
314
298
let g:ConqueTerm_PromptRegex = '^\w\+@[0-9A-Za-z_.-]\+:[0-9A-Za-z_./\~,:-]\+\$'
315
299
<
316
- 3.1.10 Choose Vim syntax type *ConqueTerm_Syntax*
300
+ 3.1.9 Choose Vim syntax type *ConqueTerm_Syntax*
317
301
318
302
Set the buffer syntax. The default has highlighting for MySQL,
319
303
but not much else.
320
304
>
321
305
let g:ConqueTerm_Syntax = 'conque_term'
322
306
<
323
- 3.1.11 The bell Vim message *ConqueTerm_ShowBell*
307
+ 3.1.10 The bell Vim message *ConqueTerm_ShowBell*
324
308
325
309
You can choose whether you want Conque to echo the warning message 'BELL!'
326
310
whenever the bell character is written to a Conque terminal.
327
311
>
328
312
let g:ConqueTerm_ShowBell = 0
329
313
<
330
- 3.1.12 Unfocused update time *ConqueTerm_UnfocusedUpdateTime*
314
+ 3.1.11 Unfocused update time *ConqueTerm_UnfocusedUpdateTime*
331
315
332
316
Use this option to define how often in milliseconds you want Conque to
333
317
update your terminals when you are not in insert mode. The value 0 (zero)
@@ -336,7 +320,7 @@ when you are in normal mode.
336
320
>
337
321
let g:ConqueTerm_UnfocusedUpdateTime = 500
338
322
>
339
- 3.1.13 Focused update time *ConqueTerm_FocusedUpdateTime*
323
+ 3.1.12 Focused update time *ConqueTerm_FocusedUpdateTime*
340
324
341
325
Use this option to define how often in milliseconds you want Conque to
342
326
update the terminal in focus when you are in insert mode. The value 0 (zero)
0 commit comments