comparison runtime/doc/version7.txt @ 659:d6a69271cb9a v7.0194

updated for version 7.0194
author vimboss
date Wed, 08 Feb 2006 09:20:24 +0000
parents 903088c7a7c6
children 1a85f952cdfe
comparison
equal deleted inserted replaced
658:903088c7a7c6 659:d6a69271cb9a
1 *version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 04 1 *version7.txt* For Vim version 7.0aa. Last change: 2006 Feb 05
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
190 Omni completion *new-omni-completion* 190 Omni completion *new-omni-completion*
191 ----------------- 191 -----------------
192 192
193 This could also be called "intellisense", but that is a trademark. It is a 193 This could also be called "intellisense", but that is a trademark. It is a
194 smart kind of completion. The text in front of the cursor is inspected to 194 smart kind of completion. The text in front of the cursor is inspected to
195 figure out what could be following. This considers struct and class members, 195 figure out what could be following. This may suggest struct and class
196 unions, etc. 196 members, system functions, etc.
197 197
198 Use CTRL-X CTRL-O in Insert mode to start the completion. |i_CTRL-X_CTRL-O| 198 Use CTRL-X CTRL-O in Insert mode to start the completion. |i_CTRL-X_CTRL-O|
199 199
200 The 'omnifunc' option is set by filetype plugins to define the function that 200 The 'omnifunc' option is set by filetype plugins to define the function that
201 figures out the completion. 201 figures out the completion.
202 202
203 Currently supported languages: 203 Currently supported languages:
204 C |ft-c-omni| 204 C |ft-c-omni|
205 XHTML |ft-html-omni| 205 (X)HTML with CSS |ft-html-omni|
206 JavaScript |ft-javascript-omni|
207 any language wih syntax highligting |ft-syntax-omni|
208 XML |ft-xml-omni|
206 209
207 When the 'completeopt' option contains "menu" then matches for Insert mode 210 When the 'completeopt' option contains "menu" then matches for Insert mode
208 completion are displayed in a popup menu. 211 completion are displayed in a popup menu.
209 212
210 213
458 |:lmake| Like |:make| but use the location list. 461 |:lmake| Like |:make| but use the location list.
459 |:lgrep| Like |:grep| but use the location list. 462 |:lgrep| Like |:grep| but use the location list.
460 |:lgrepadd| Like |:grepadd| but use the location list. 463 |:lgrepadd| Like |:grepadd| but use the location list.
461 |:lvimgrep| Like |:vimgrep| but use the location list. 464 |:lvimgrep| Like |:vimgrep| but use the location list.
462 |:lvimgrepadd| Like |:vimgrepadd| but use the location list. 465 |:lvimgrepadd| Like |:vimgrepadd| but use the location list.
466 |:lhelpgrep| Like |:helpgrep| but use the location list.
467 |:lfile| Like |:cfile| but use the location list.
468 |:lgetfile| Like |:cgetfile| but use the location list.
469 |:laddfile| Like |:caddfile| but use the location list.
470 |:lbuffer| Like |:cbuffer| but use the location list.
463 |:laddbuffer| Like |:caddbuffer| but use the location list. 471 |:laddbuffer| Like |:caddbuffer| but use the location list.
472 |:lexpr| Like |:cexpr| but use the location list.
473 |:laddexpr| Like |:caddexpr| but use the location list.
474 |:ll| Like |:cc| but use the location list.
475 |:llist| Like |:clist| but use the location list.
476 |:lnext| Like |:cnext| but use the location list.
477 |:lprev| Like |:cprev| but use the location list.
478 |:lNext| Like |:cNext| but use the location list.
479 |:lfirst| Like |:cfirst| but use the location list.
480 |:lrewind| Like |:crewind| but use the location list.
481 |:llast| Like |:clast| but use the location list.
482 |:lnfile| Like |:cnfile| but use the location list.
483 |:lpfile| Like |:cpfile| but use the location list.
484 |:lNfile| Like |:cNfile| but use the location list.
485 |:lolder| Like |:colder| but use the location list.
486 |:lnewer| Like |:cnewer| but use the location list.
487 |:lwindow| Like |:cwindow| but use the location list.
488 |:lopen| Like |:copen| but use the location list.
489 |:lclose| Like |:cclose| but use the location list.
464 490
465 491
466 Ex command modifiers: ~ 492 Ex command modifiers: ~
467 493
468 |:keepalt| Do not change the alternate file. 494 |:keepalt| Do not change the alternate file.