comparison runtime/doc/version7.txt @ 231:8eec9649b7a2 v7.0064

updated for version 7.0064
author vimboss
date Fri, 25 Mar 2005 21:58:17 +0000
parents 14ded4ba39cc
children a686fd6c8beb
comparison
equal deleted inserted replaced
230:9281a51ca7a2 231:8eec9649b7a2
1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 20 1 *version7.txt* For Vim version 7.0aa. Last change: 2005 Mar 24
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
195 better portability, handling of different file encodings and using multi-line 195 better portability, handling of different file encodings and using multi-line
196 patterns, this also allows grepping in compressed and remote files. 196 patterns, this also allows grepping in compressed and remote files.
197 |:vimgrep|. 197 |:vimgrep|.
198 198
199 If you want to use the search results in a script you can use the 199 If you want to use the search results in a script you can use the
200 |errorlist()| function. 200 |getqflist()| function.
201 201
202 202
203 POSIX compatibility *new-posix* 203 POSIX compatibility *new-posix*
204 ------------------- 204 -------------------
205 205
321 |call()| call a function with List as arguments 321 |call()| call a function with List as arguments
322 |copy()| make a shallow copy of a List or Dictionary 322 |copy()| make a shallow copy of a List or Dictionary
323 |count()| count nr of times a value is in a List or Dictionary 323 |count()| count nr of times a value is in a List or Dictionary
324 |deepcopy()| make a full copy of a List or Dictionary 324 |deepcopy()| make a full copy of a List or Dictionary
325 |empty()| check if List or Dictionary is empty 325 |empty()| check if List or Dictionary is empty
326 |errorlist()| list of quickfix errors 326 |getqflist()| list of quickfix errors
327 |extend()| append one List to another or add items from one 327 |extend()| append one List to another or add items from one
328 Dictionary to another 328 Dictionary to another
329 |filter()| remove selected items from a List or Dictionary 329 |filter()| remove selected items from a List or Dictionary
330 |finddir()| Find a directory in 'path'. 330 |finddir()| Find a directory in 'path'.
331 |findfile()| Find a file in 'path'. (Johannes Zellner) 331 |findfile()| Find a file in 'path'. (Johannes Zellner)
349 |mkdir()| create a directory 349 |mkdir()| create a directory
350 |readfile()| read a file into a list of lines 350 |readfile()| read a file into a list of lines
351 |remove()| remove one or more items from a List or Dictionary 351 |remove()| remove one or more items from a List or Dictionary
352 |repeat()| Repeat "expr" "count" times. (Christophe Poucet) 352 |repeat()| Repeat "expr" "count" times. (Christophe Poucet)
353 |reverse()| reverse the order of a List 353 |reverse()| reverse the order of a List
354 |setqflist()| create a quickfix list
354 |sort()| sort a List 355 |sort()| sort a List
355 |split()| split a String into a List 356 |split()| split a String into a List
356 |string()| String representation of a List or Dictionary 357 |string()| String representation of a List or Dictionary
357 |system()| Filters {input} through a shell command. 358 |system()| Filters {input} through a shell command.
358 |taglist()| Get list of matching tags. (Yegappan Lakshmanan) 359 |taglist()| Get list of matching tags. (Yegappan Lakshmanan)
1011 "gg=G" while 'modifiable' is off was uninterruptable. 1012 "gg=G" while 'modifiable' is off was uninterruptable.
1012 1013
1013 When 'encoding' is "sjis" inserting CTRL-V u d800 a few times causes a crash. 1014 When 'encoding' is "sjis" inserting CTRL-V u d800 a few times causes a crash.
1014 Don't insert a DBCS character with a NUL second byte. 1015 Don't insert a DBCS character with a NUL second byte.
1015 1016
1017 In Insert mode CTRL-O <Home> didn't move the cursor. Made "ins_at_eol" global
1018 and reset it in nv_home().
1019
1016 vim:tw=78:ts=8:ft=help:norl: 1020 vim:tw=78:ts=8:ft=help:norl: