# HG changeset patch # User vimboss # Date 1113598838 0 # Node ID 4707450c2b3339ae3cff1987f1296634f25da01e # Parent 23d380e32c95db5a03e4083b9459a1c3306cc69e updated for version 7.0066 diff --git a/runtime/compiler/ant.vim b/runtime/compiler/ant.vim --- a/runtime/compiler/ant.vim +++ b/runtime/compiler/ant.vim @@ -1,7 +1,7 @@ " Vim Compiler File " Compiler: ant " Maintainer: Johannes Zellner -" Last Change: Tue, 27 Apr 2004 15:01:45 CEST +" Last Change: Mi, 13 Apr 2005 22:50:07 CEST if exists("current_compiler") finish @@ -21,15 +21,15 @@ CompilerSet makeprg=ant " ant with jikes +E, which assumes the following " two property lines in your 'build.xml': " -" -" +" +" " " second line: " ant with javac " " note that this will work also for tasks like [wtkbuild] " -setlocal errorformat=\ %#[%.%#]\ %#%f:%l:%v:%*\\d:%*\\d:\ %t%[%^:]%#:%m, +CompilerSet errorformat=\ %#[%.%#]\ %#%f:%l:%v:%*\\d:%*\\d:\ %t%[%^:]%#:%m, \%A\ %#[%.%#]\ %f:%l:\ %m,%-Z\ %#[%.%#]\ %p^,%C\ %#[%.%#]\ %#%m " ,%-C%.%# diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -257,6 +257,11 @@ HTMLS = \ workshop.html CONVERTED = \ + vim-fr.UTF-8.1 \ + evim-fr.UTF-8.1 \ + vimdiff-fr.UTF-8.1 \ + vimtutor-fr.UTF-8.1 \ + xxd-fr.UTF-8.1 \ vim-it.UTF-8.1 \ evim-it.UTF-8.1 \ vimdiff-it.UTF-8.1 \ @@ -380,32 +385,47 @@ os_risc.txt: os_win32.txt: touch os_win32.txt +vim-fr.UTF-8.1: vim-fr.1 + iconv -f latin1 -t utf-8 $< >$@ + +evim-fr.UTF-8.1: evim-fr.1 + iconv -f latin1 -t utf-8 $< >$@ + +vimdiff-fr.UTF-8.1: vimdiff-fr.1 + iconv -f latin1 -t utf-8 $< >$@ + +vimtutor-fr.UTF-8.1: vimtutor-fr.1 + iconv -f latin1 -t utf-8 $< >$@ + +xxd-fr.UTF-8.1: xxd-fr.1 + iconv -f latin1 -t utf-8 $< >$@ + vim-it.UTF-8.1: vim-it.1 - iconv -f latin1 -t utf-8 $> >$@ + iconv -f latin1 -t utf-8 $< >$@ evim-it.UTF-8.1: evim-it.1 - iconv -f latin1 -t utf-8 $> >$@ + iconv -f latin1 -t utf-8 $< >$@ vimdiff-it.UTF-8.1: vimdiff-it.1 - iconv -f latin1 -t utf-8 $> >$@ + iconv -f latin1 -t utf-8 $< >$@ vimtutor-it.UTF-8.1: vimtutor-it.1 - iconv -f latin1 -t utf-8 $> >$@ + iconv -f latin1 -t utf-8 $< >$@ xxd-it.UTF-8.1: xxd-it.1 - iconv -f latin1 -t utf-8 $> >$@ + iconv -f latin1 -t utf-8 $< >$@ vim-ru.UTF-8.1: vim-ru.1 - iconv -f KOI8-R -t utf-8 $> >$@ + iconv -f KOI8-R -t utf-8 $< >$@ evim-ru.UTF-8.1: evim-ru.1 - iconv -f KOI8-R -t utf-8 $> >$@ + iconv -f KOI8-R -t utf-8 $< >$@ vimdiff-ru.UTF-8.1: vimdiff-ru.1 - iconv -f KOI8-R -t utf-8 $> >$@ + iconv -f KOI8-R -t utf-8 $< >$@ vimtutor-ru.UTF-8.1: vimtutor-ru.1 - iconv -f KOI8-R -t utf-8 $> >$@ + iconv -f KOI8-R -t utf-8 $< >$@ xxd-ru.UTF-8.1: xxd-ru.1 - iconv -f KOI8-R -t utf-8 $> >$@ + iconv -f KOI8-R -t utf-8 $< >$@ diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.0aa. Last change: 2005 Mar 16 +*change.txt* For Vim version 7.0aa. Last change: 2005 Apr 03 VIM REFERENCE MANUAL by Bram Moolenaar @@ -915,6 +915,8 @@ 5. Copying and moving text *copy-move current line). This always works |linewise|, thus this command can be used to put a yanked block as new lines. + The cursor is left on the first non-blank in the last + new line. The register can also be '=' followed by an optional expression. The expression continues until the end of the command. You need to escape the '|' and '"' @@ -964,9 +966,9 @@ When using a put command like |p| or |P| replace the selected text with the contents of the register. Whether this works well depends on the type of selection and the type of the text in the register. With blockwise selection it also depends on the size of the block -and whether the corners are on an existing character. (implementation detail: +and whether the corners are on an existing character. (Implementation detail: it actually works by first putting the register after the selection and then -deleting the selection). +deleting the selection.) *blockwise-register* If you use a blockwise Visual mode command to get the text into the register, @@ -1417,7 +1419,7 @@ If the 'comments' option includes "/*", built in stuff to treat these types of comments a bit more cleverly. Opening a new line before or after "/*" or "*/" (with 'r' or 'o' present in 'formatoptions') gives the correct start of the line automatically. The same -happens with formatting and auto-wrapping. Opening a line after a line +happens with formatting and auto-wrapping. Opening a line after a line starting with "/*" or "*" and containing "*/", will cause no comment leader to be inserted, and the indent of the new line is taken from the line containing the start of the comment. diff --git a/runtime/doc/debugger.txt b/runtime/doc/debugger.txt --- a/runtime/doc/debugger.txt +++ b/runtime/doc/debugger.txt @@ -1,4 +1,4 @@ -*debugger.txt* For Vim version 7.0aa. Last change: 2005 Mar 07 +*debugger.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Gordon Prieur @@ -27,19 +27,19 @@ Environment (IDE): These features were added specifically for use in the Motif version of gvim. However, the |alt-input| and |debug-highlight| were written to be usable in -both vim and gvim. Some of the other features could be used in the non-GUI -vim with slight modifications. However, I did not do this nor did I test the +both vim and gvim. Some of the other features could be used in the non-GUI +vim with slight modifications. However, I did not do this nor did I test the reliability of building for vim or non Motif GUI versions. 1.1 Alternate Command Input *alt-input* For Vim to work with a debugger there must be at least an input connection -with a debugger or external tool. In many cases there will also be an output +with a debugger or external tool. In many cases there will also be an output connection but this isn't absolutely necessary. The purpose of the input connection is to let the external debugger send -commands to Vim. The commands sent by the debugger should give the debugger +commands to Vim. The commands sent by the debugger should give the debugger enough control to display the current debug environment and state. The current implementation is based on the X Toolkit dispatch loop and the @@ -49,15 +49,15 @@ XtAddInput() function call. 1.2 Debug Signs *debug-signs* Many debuggers mark specific lines by placing a small sign or color highlight -on the line. The |:sign| command lets the debugger set this graphic mark. Some +on the line. The |:sign| command lets the debugger set this graphic mark. Some examples where this feature would be used would be a debugger showing an arrow -representing the Program Counter (PC) of the program being debugged. Another -example would be a small stop sign for a line with a breakpoint. These visible +representing the Program Counter (PC) of the program being debugged. Another +example would be a small stop sign for a line with a breakpoint. These visible highlights let the user keep track of certain parts of the state of the debugger. -This feature can be used with more than debuggers, too. An IPE can use a sign -to highlight build errors, searched text, or other things. The sign feature +This feature can be used with more than debuggers, too. An IPE can use a sign +to highlight build errors, searched text, or other things. The sign feature can also work together with the |debug-highlight| to ensure the mark is highly visible. @@ -66,17 +66,17 @@ Debug signs are defined and placed using 1.3 Debug Source Highlight *debug-highlight* -This feature allows a line to have a predominant highlight. The highlight is -intended to make a specific line stand out. The highlight could be made to +This feature allows a line to have a predominant highlight. The highlight is +intended to make a specific line stand out. The highlight could be made to work for both vim and gvim, whereas the debug sign is, in most cases, limited -to gvim. The one exception to this is Sun Microsystem's dtterm. The dtterm +to gvim. The one exception to this is Sun Microsystem's dtterm. The dtterm from Sun has a "sign gutter" for showing signs. 1.4 Message Footer *gui-footer* -The message footer can be used to display messages from a debugger or IPE. It -can also be used to display menu and toolbar tips. The footer area is at the +The message footer can be used to display messages from a debugger or IPE. It +can also be used to display menu and toolbar tips. The footer area is at the bottom of the GUI window, below the line used to display colon commands. The display of the footer is controlled by the 'guioptions' letter 'F'. @@ -85,7 +85,7 @@ The display of the footer is controlled 1.5 Balloon Evaluation *balloon-eval* This feature allows a debugger, or other external tool, to display dynamic -information based on where the mouse is pointing. The purpose of this feature +information based on where the mouse is pointing. The purpose of this feature was to allow Sun's Visual WorkShop debugger to display expression evaluations. However, the feature was implemented in as general a manner as possible and could be used for displaying other information as well. @@ -111,7 +111,7 @@ completely user definable. 2. Vim Compile Options *debugger-compilation* The debugger features were added explicitly for use with Sun's Visual -WorkShop Integrated Programming Environment (ipe). However, they were done +WorkShop Integrated Programming Environment (ipe). However, they were done in as generic a manner as possible so that integration with other debuggers could also use some or all of the tools used with Sun's ipe. @@ -123,7 +123,7 @@ The following compile time preprocessor Message Footer FEAT_FOOTER Balloon Evaluation FEAT_BEVAL -The first integration with a full IPE/IDE was with Sun Visual WorkShop. To +The first integration with a full IPE/IDE was with Sun Visual WorkShop. To compile a gvim which interfaces with VWS set the following flag, which sets all the above flags: diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -1,4 +1,4 @@ -*develop.txt* For Vim version 7.0aa. Last change: 2004 Jan 17 +*develop.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -366,7 +366,33 @@ window View on a buffer. There can be fit in the shell. -To be continued... +Spell checking *develop-spell* + +When spell checking was going to be added to Vim a survey was done over the +available spell checking libraries and programs. Unfortunately, the result +was that none of them provided sufficient capabilities to be used as the spell +checking engine in Vim, for various reasons: + +- Missing support for multi-byte encodings. At least UTF-8 must be supported, + so that more than one language can be used in the same file. +- For the programs and libraries: Using them as-is would require installing + them separately from Vim. That's not impossible, but a drawback. +- Performance: A few tests showed that it's possible to check spelling on the + fly (while redrawing), just like syntax highlighting. But the mechanisms + used by other code are much slower. Myspell uses a simplistic hashtable, + for example. +- For a program like aspell a communication mechanism would have to be setup. + That's complicated to do in a portable way (Unix-only would be relatively + simple, but that's not good enough). And performance will become a problem + (lots of process switching involved). +- Missing support for words with non-word characters, such as "Etten-Leur" and + "et al.", would require marking the pieces of them OK, lowering the + reliability. +- Missing support for regions or dialects. Makes it difficult to accept + all English words and highlight non-Canadian words differently. +- Missing support for rare words. Many words are correct but hardly ever used + and could be a misspelled often-used word. + ============================================================================== 4. Assumptions *design-assumptions* diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -1,4 +1,4 @@ -*editing.txt* For Vim version 7.0aa. Last change: 2005 Feb 14 +*editing.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -46,7 +46,7 @@ However, the alternate file name is not name. {not in Vi} All file names are remembered in the buffer list. When you enter a file name, -for editing (e.g., with ":e filename") or writing (e.g., with ":w file name"), +for editing (e.g., with ":e filename") or writing (e.g., with ":w filename"), the file name is added to the list. You can use the buffer list to remember which files you edited and to quickly switch from one file to another (e.g., to copy text) with the |CTRL-^| command. First type the number of the file @@ -57,7 +57,7 @@ CTRL-G or *CTRL-G* *:f* *:fi* *:file :f[ile] Prints the current file name (as typed), the cursor position (unless the 'ruler' option is set), and the file status (readonly, modified, read errors, - new file). See the 'shortmess' option about how tho + new file). See the 'shortmess' option about how to make this message shorter. {Vi does not include column number} @@ -910,8 +910,8 @@ if the system allows it (the directory m *write-fail* If the writing of the new file fails, you have to be careful not to lose your changes AND the original file. If there is no backup file and writing -the new file failed, you have already lost the original file! DON'T EXIT VIM -UNTIL YOU WRITE OUT THE FILE! If a backup was made, it is put back in place +the new file failed, you have already lost the original file! DON'T EXIT VIM +UNTIL YOU WRITE OUT THE FILE! If a backup was made, it is put back in place of the original file (if possible). If you exit Vim, and lose the changes you made, the original file will mostly still be there. If putting back the original file fails, there will be an error message telling you that you @@ -1391,6 +1391,11 @@ It is also possible that you modified th session or with another command (e.g., a filter command). Then you will know which version of the file you want to keep. +There is one situation where you get the message while there is nothing wrong: +On a Win32 system on the day daylight saving time starts. There is something +in the Win32 libraries that confuses Vim about the hour time difference. The +problem goes away the next day. + ============================================================================== 11. File Searching *file-searching* @@ -1401,7 +1406,7 @@ options. There are three different type 1) Downward search: Downward search uses the wildcards '*', '**' and possibly others - supported by your operating system. '*' and '**' are handled inside Vim, so + supported by your operating system. '*' and '**' are handled inside Vim, so they work on all operating systems. The usage of '*' is quite simple: It matches 0 or more characters. @@ -1435,10 +1440,10 @@ 1) Downward search: 2) Upward search: Here you can give a directory and then search the directory tree upward for - a file. You could give stop-directories to limit the upward search. The + a file. You could give stop-directories to limit the upward search. The stop-directories are appended to the path (for the 'path' option) or to - the filename (for the 'tags' option) with a ';'. If you want several - stop-directories separate them with ';'. If you want no stop-directory + the filename (for the 'tags' option) with a ';'. If you want several + stop-directories separate them with ';'. If you want no stop-directory ("search upward till the root directory) just use ';'. > /usr/include/sys;/usr < will search in: > @@ -1457,7 +1462,7 @@ 2) Upward search: /u/user_x/work/include /u/user_x/include -3) Combined up/downward search +3) Combined up/downward search: If Vim's current path is /u/user_x/work/release and you do > set path=**;/u/user_x < and then search for a file with |gf| the file is searched in: > @@ -1465,10 +1470,10 @@ 3) Combined up/downward search /u/user_x/work/** /u/user_x/** < - BE CAREFUL! This might consume a lot of time, as the search of + BE CAREFUL! This might consume a lot of time, as the search of '/u/user_x/**' includes '/u/user_x/work/**' and '/u/user_x/work/release/**'. So '/u/user_x/work/release/**' is searched - three and '/u/user_x/work/**' is searched two times. + three times and '/u/user_x/work/**' is searched twice. In the above example you might want to set path to: > :set path=**,/u/user_x/** diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.0aa. Last change: 2005 Mar 26 +*eval.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1412,7 +1412,7 @@ 4. Builtin Functions *functions* See |function-list| for a list grouped by what the function is used for. -(Use CTRL-] on the function name to jump to the full explanation) +(Use CTRL-] on the function name to jump to the full explanation.) USAGE RESULT DESCRIPTION ~ @@ -1620,7 +1620,7 @@ writefile({list}, {fname} [, {binary}]) add({list}, {expr}) *add()* Append the item {expr} to List {list}. Returns the resulting - List. Examples: > + List. Examples: > :let alist = add([1, 2, 3], item) :call add(mylist, "woodstock") < Note that when {expr} is a List it is appended as a single @@ -1809,6 +1809,7 @@ char2nr({expr}) *char2nr()* < The current 'encoding' is used. Example for "utf-8": > char2nr("á") returns 225 char2nr("á"[0]) returns 195 +< nr2char() does the opposite. cindent({lnum}) *cindent()* Get the amount of indent for line {lnum} according the C @@ -2551,10 +2552,10 @@ getqflist() *getqflist()* getreg([{regname}]) *getreg()* The result is a String, which is the contents of register - {regname}. Example: > + {regname}. Example: > :let cliptext = getreg('*') < getreg('=') returns the last evaluated value of the expression - register. (For use in maps). + register. (For use in maps.) If {regname} is not specified, |v:register| is used. @@ -2677,7 +2678,7 @@ histadd({history}, {item}) *histadd() < This function is not available in the |sandbox|. histdel({history} [, {item}]) *histdel()* - Clear {history}, ie. delete all its entries. See |hist-names| + Clear {history}, i.e. delete all its entries. See |hist-names| for the possible values of {history}. If the parameter {item} is given as String, this is seen @@ -2753,7 +2754,7 @@ hlID({name}) The result is a Number, whi hostname() *hostname()* The result is a String, which is the name of the machine on - which Vim is currently running. Machine names greater than + which Vim is currently running. Machine names greater than 256 characters long are truncated. iconv({expr}, {from}, {to}) *iconv()* @@ -2873,7 +2874,7 @@ insert({list}, {item} [, {idx}]) *inse {idx}. If {idx} is zero it goes before the first item, just like omitting {idx}. A negative {idx} is also possible, see |list-index|. -1 inserts just before the last item. - Returns the resulting List. Examples: > + Returns the resulting List. Examples: > :let mylist = insert([2, 3, 5], 1) :call insert(mylist, 4, -1) :call insert(mylist, 6, len(mylist)) @@ -3131,7 +3132,7 @@ match({expr}, {pat}[, {start}[, {count}] If {start} is given, the search starts from byte index {start} in a String or item {start} in a List. The result, however, is still the index counted from the - first character/item. Example: > + first character/item. Example: > :echo match("testing", "ing", 2) < result is again "4". > :echo match("testing", "ing", 4) @@ -3405,7 +3406,7 @@ repeat({expr}, {count}) *repeat()* :let seperator = repeat('-', 80) < When {count} is zero or negative the result is empty. When {expr} is a List the result is {expr} concatenated - {count} times. Example: > + {count} times. Example: > :let longlist = repeat(['a', 'b'], 3) < Results in ['a', 'b', 'a', 'b', 'a', 'b']. @@ -3544,7 +3545,7 @@ server2client( {clientid}, {string}) * {only available when compiled with the |+clientserver| feature} Note: This id has to be stored before the next command can be - received. Ie. before returning from the received command and + received. I.e. before returning from the received command and before calling any commands that waits for input. See also |clientserver|. Example: > @@ -3587,9 +3588,10 @@ setcmdpos({pos}) *setcmdpos()* line. setline({lnum}, {line}) *setline()* - Set line {lnum} of the current buffer to {line}. If this - succeeds, 0 is returned. If this fails (most likely because - {lnum} is invalid) 1 is returned. Example: > + Set line {lnum} of the current buffer to {line}. + {lnum} is used like with |getline()|. + If this succeeds, 0 is returned. If this fails (most likely + because {lnum} is invalid) 1 is returned. Example: > :call setline(5, strftime("%c")) < Note: The '[ and '] marks are not set. @@ -3715,7 +3717,9 @@ split({expr} [, {pattern}]) *split()* :let words = split(getline('.'), '\W\+') < Since empty strings are not added the "\+" isn't required but it makes the function work a bit faster. - The opposite function is |join()|. + To split a string in individual characters: > + :for c in split(mystring, '\zs') +< The opposite function is |join()|. strftime({format} [, {time}]) *strftime()* @@ -3806,7 +3810,7 @@ strridx({haystack}, {needle} [, {start}] For pattern searches use |match()|. -1 is returned if the {needle} does not occur in {haystack}. If the {needle} is empty the length of {haystack} is returned. - See also |stridx()|. Examples: > + See also |stridx()|. Examples: > :echo strridx("an angry armadillo", "an") 3 < *strrchr()* When used with a single character it works similar to the C @@ -3940,7 +3944,7 @@ taglist({expr}) *taglist()* defined. cmd Ex command used to locate the tag in the file. - kind type of the tag. The value for this + kind type of the tag. The value for this entry depends on the language specific kind values generated by the ctags tool. @@ -4068,7 +4072,7 @@ visualmode([expr]) *visualmode()* *winbufnr()* winbufnr({nr}) The result is a Number, which is the number of the buffer - associated with window {nr}. When {nr} is zero, the number of + associated with window {nr}. When {nr} is zero, the number of the buffer in the current window is returned. When window {nr} doesn't exist, -1 is returned. Example: > @@ -4657,7 +4661,7 @@ You can use multiple brace pairs: > where "end_of_word" is either "verb" or "jective". However, the expression inside the braces must evaluate to a valid single -variable name. e.g. this is invalid: > +variable name, e.g. this is invalid: > :let foo='a + b' :echo c{foo}d .. since the result of expansion is "ca + bd", which is not a variable name. diff --git a/runtime/doc/evim-fr.UTF-8.1 b/runtime/doc/evim-fr.UTF-8.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/evim-fr.UTF-8.1 @@ -0,0 +1,56 @@ +.TH EVIM 1 "16 février 2002 February 16" +.SH NAME +evim \- « Easy Vim », édite un fichier avec Vim sans utiliser les modes +.SH SYNOPSIS +.br +.B evim +[options] [fichier ...] +.br +.B eview +.SH DESCRIPTION +.B eVim +lance +.B Vim +et configure ses options afin qu'il se comporte comme un éditeur sans mode. +Cela reste Vim, mais vous pouvez l'utiliser comme un éditeur « cliquer-taper ». +Cela ressemble beaucoup à l'édition avec Notepad sur MS-Windows. +.B eVim +ne fonctionne qu'avec l'interface graphique, qui est nécessaire pour permettre +l'utilisation des menus et de la barre d'outils. +.PP +Il n'est utile qu'aux personnes qui ne parviennent vraiment pas à utiliser Vim +de façon traditionnelle. L'édition est alors bien moins efficace. +.PP +.B eview +fait la même chose, mais démarre Vim en mode Lecture-seule. +Cela revient à lancer evim \-R. +.PP +Voir vim(1) pour davantage d'informations sur Vim, les options, etc. +.PP +L'option 'insertmode' est activée pour permettre de taper directement du texte. +.br +Les mappages sont configurés pour que Copier et Coller fonctionnent avec les +raccourcis habituels de MS-Windows. CTRL-X coupe le texte, CTRL-C copie le +texte et CTRL-V colle le texte. +Vous pouvez utiliser CTRL-Q pour obtenir la fonction originale de CTRL-V. +.SH OPTIONS +Voir vim(1). +.SH FICHIERS +.TP 15 +/usr/local/lib/vim/evim.vim +Le script chargé pour initialiser eVim. +.SH AUSSI CONNU SOUS +Également connu sous le nom « Vim pour gumbies » [N.D.T. : Flying Circus...]. +Quand vous utilisez eVim, vous êtes censé prendre un mouchoir de poche, +faire un noeud à chaque coin et le porter sur votre tête. +.SH VOIR AUSSI +vim(1) +.SH AUTEUR +La majeure partie de +.B Vim +a été écrite par Bram Moolenaar, avec l'aide de nombreux autres contributeurs. +Voir le menu Aide/Remerciements ou ":help credits" dans +.B Vim. +.SH TRADUCTION +Cette page de manuel a été traduite David Blanchet. + 2005-03-26. diff --git a/runtime/doc/fold.txt b/runtime/doc/fold.txt --- a/runtime/doc/fold.txt +++ b/runtime/doc/fold.txt @@ -1,4 +1,4 @@ -*fold.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*fold.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -330,7 +330,7 @@ zC Close all folds under the cursor rec 'foldenable' will be set. *za* -za When on a closed fold: open it. When folds are nested, you +za When on a closed fold: open it. When folds are nested, you may have to use "za" several times. When a count is given, that many closed folds are opened. When on an open fold: close it and set 'foldenable'. This diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt --- a/runtime/doc/gui.txt +++ b/runtime/doc/gui.txt @@ -1,4 +1,4 @@ -*gui.txt* For Vim version 7.0aa. Last change: 2005 Jan 14 +*gui.txt* For Vim version 7.0aa. Last change: 2005 Apr 11 VIM REFERENCE MANUAL by Bram Moolenaar @@ -184,7 +184,7 @@ When the scrollbar is dragged all the wa will appear in the top of the window. If a window is shrunk to zero height (by the growth of another window) its -scrollbar disappears. It reappears when the window is restored. +scrollbar disappears. It reappears when the window is restored. If a window is vertically split, it will get a scrollbar when it is the current window and when, taking the middle of the current window and drawing a @@ -408,7 +408,7 @@ used - you should read whichever of thes *clipboard* There is a special register for storing this selection, it is the "* register. Nothing is put in here unless the information about what text is -selected is about to change (eg with a left mouse click somewhere), or when +selected is about to change (e.g. with a left mouse click somewhere), or when another application wants to paste the selected text. Then the text is put in the "* register. For example, to cut a line and make it the current selection/put it on the clipboard: > @@ -504,7 +504,7 @@ 5.2 Creating New Menus *creating-men *E328* *E329* *E337* To create a new menu item, use the ":menu" commands. They are mostly like the ":map" set of commands but the first argument is a menu item name, given -as a path of menus and submenus with a '.' between them. eg: > +as a path of menus and submenus with a '.' between them, e.g.: > :menu File.Save :w :inoremenu File.Save :w @@ -648,9 +648,9 @@ simple. *gui-toolbar* The toolbar is currently available in the Win32, Athena, Motif, GTK+ (X11), -KDE and Photon GUI. It should turn up in other GUIs in due course. The default -toolbar is setup in menu.vim. -The display of the toolbar is controlled by the 'guioptions' letter 'T'. You +KDE and Photon GUI. It should turn up in other GUIs in due course. The +default toolbar is setup in menu.vim. +The display of the toolbar is controlled by the 'guioptions' letter 'T'. You can thus have menu & toolbar together, or either on its own, or neither. The appearance is controlled by the 'toolbar' option. You can chose between an image, text or both. @@ -661,7 +661,7 @@ level. Vim interprets the items in this 1) If an "icon=" argument was specified, the file with this name is used. The file can either be specified with the full path or with the base name. In the last case it is searched for in the "bitmaps" directory in - 'runtimepath', like in point 3). Examples: > + 'runtimepath', like in point 3. Examples: > :amenu icon=/usr/local/pixmaps/foo_icon.xpm ToolBar.Foo :echo "Foo" :amenu icon=FooIcon ToolBar.Foo :echo "Foo" < Note that in the first case the extension is included, while in the second @@ -671,7 +671,7 @@ 1) If an "icon=" argument was specified A menu priority must come _after_ the icon argument: > :amenu icon=foo 1.42 ToolBar.Foo :echo "42!" 2) An item called 'BuiltIn##', where ## is a number, is taken as number ## of - the built-in bitmaps available in Vim. Currently there are 31 numbered + the built-in bitmaps available in Vim. Currently there are 31 numbered from 0 to 30 which cover most common editing operations |builtin-tools|. > :amenu ToolBar.BuiltIn22 :call SearchNext("back") 3) An item with another name is first searched for in the directory @@ -747,7 +747,7 @@ To see what an existing menu is mapped t menu commands (just like you would with the ":map" commands). If the menu specified is a submenu, then all menus under that hierarchy will be shown. If no argument is given after :menu at all, then ALL menu items are shown -for the appropriate mode (eg, Command-line mode for :cmenu). +for the appropriate mode (e.g., Command-line mode for :cmenu). Special characters in the list, just before the rhs: * The menu was defined with "nore" to disallow remapping. @@ -856,7 +856,7 @@ See section |42.4| in the user manual. When a tip is defined for a menu item, it appears in the command-line area when the mouse is over that item, much like a standard Windows menu hint in -the status bar. (Except when Vim is in Command-line mode, when of course +the status bar. (Except when Vim is in Command-line mode, when of course nothing is displayed.) When a tip is defined for a ToolBar item, it appears as a tooltip when the mouse pauses over that button, in the usual fashion. Use the |hl-Tooltip| @@ -870,7 +870,7 @@ The tip is defined like this: > And delete it with: > :tunmenu MyMenu.Hello -Tooltips are currently only supported for the X11 and Win32 GUI. However, they +Tooltips are currently only supported for the X11 and Win32 GUI. However, they should appear for the other gui platforms in the not too distant future. The ":tmenu" command works just like other menu commands, it uses the same @@ -920,7 +920,7 @@ This section describes other features wh get "". - In the GUI, the modifiers SHIFT, CTRL, and ALT (or META) may be used within - mappings of special keys and mouse events. eg: :map + mappings of special keys and mouse events. E.g.: :map - In the GUI, several normal keys may have modifiers in mappings etc, these are , , , , . diff --git a/runtime/doc/gui_w16.txt b/runtime/doc/gui_w16.txt --- a/runtime/doc/gui_w16.txt +++ b/runtime/doc/gui_w16.txt @@ -1,4 +1,4 @@ -*gui_w16.txt* For Vim version 7.0aa. Last change: 2001 Sep 03 +*gui_w16.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -21,32 +21,32 @@ Other relevant documentation: {Vi does not have a Windows GUI} -The Win16 version of Vim will run on Windows 3.1 or later. It has not been +The Win16 version of Vim will run on Windows 3.1 or later. It has not been tested on 3.0, it probably won't work without being recompiled and -modified. (but you really should upgrade to 3.11 anyway. :) +modified. (But you really should upgrade to 3.11 anyway. :) In most respects it behaves identically to the Win32 GUI version, including -having a flat-style toolbar(!). The chief differences: +having a flat-style toolbar(!). The chief differences: 1) Bold/Italic text is not available, to speed up repaint/reduce resource - usage. (You can re-instate this by undefining MSWIN16_FASTTEXT.) + usage. (You can re-instate this by undefining MSWIN16_FASTTEXT.) 2) No tearoff menu emulation. 3) No OLE interface. -4) No long filename support (of course) +4) No long filename support (of course). 5) No tooltips on toolbar buttons - instead they produce command-line tips like menu items do. -6) Line length limited to 32767 characters (like 16-bit DOS version) +6) Line length limited to 32767 characters (like 16-bit DOS version). ============================================================================== 1. Starting the GUI *win16-start* The Win16 GUI version of Vim will always start the GUI, no matter how you -start it or what it's called. There is no 'console' version as such, but you +start it or what it's called. There is no 'console' version as such, but you can use one of the DOS versions in a DOS box. The Win16 GUI has an extra menu item: "Window/Select Font". It brings up the -standard Windows font selector. Note that bold and italic fonts are not +standard Windows font selector. Note that bold and italic fonts are not supported in an attempt to maximize GDI drawing speed. Setting the menu height doesn't work for the Win16 GUI. @@ -82,7 +82,7 @@ The clipboard works in the same way as t 4. Shell Commands *win16-shell* Vim spawns a DOS window for external commands, to make it possible to run any -DOS command. The window uses the _default.pif settings. +DOS command. The window uses the _default.pif settings. *win16-!start* Normally, Vim waits for a command to complete before continuing (this makes @@ -135,7 +135,7 @@ as the traditional interface shared with 6.1 Dialogs The dialogs displayed by the "confirm" family (i.e. the 'confirm' option, -|:confirm| command and |confirm()| function are GUI-based rather than the +|:confirm| command and |confirm()| function) are GUI-based rather than the console-based ones used by other versions. There is no option to change this. @@ -157,7 +157,7 @@ PrintFile. See $VIMRUNTIME/menu.vim for Using this should also work: > :w >>prn -Vim supports a number of standard MS Windows features. Some of these are +Vim supports a number of standard MS Windows features. Some of these are detailed elsewhere: see |'mouse'|, |win32-hidden-menus|. Also see |:simalt| @@ -176,11 +176,11 @@ names with any Ex command. *win16-truetype* It is recommended that you use a raster font and not a TrueType -fixed-pitch font. e.g. Use Courier, not Courier New. This is not just +fixed-pitch font. E.g. use Courier, not Courier New. This is not just to use less resources but because there are subtle bugs in the -handling of fixed-pitch TrueType in Win3.1x. In particular, when you move +handling of fixed-pitch TrueType in Win3.1x. In particular, when you move a block cursor over a pipe character '|', the cursor is drawn in the wrong -size and bits get left behind. This is a bug in the Win3.1x GDI, it doesn't +size and bits get left behind. This is a bug in the Win3.1x GDI, it doesn't happen if you run the exe under 95/NT. vim:tw=78:sw=4:ts=8:ft=help:norl: diff --git a/runtime/doc/gui_w32.txt b/runtime/doc/gui_w32.txt --- a/runtime/doc/gui_w32.txt +++ b/runtime/doc/gui_w32.txt @@ -1,4 +1,4 @@ -*gui_w32.txt* For Vim version 7.0aa. Last change: 2005 Feb 14 +*gui_w32.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -58,7 +58,7 @@ 2. Vim as default editor *vim-default To set Vim as the default editor for a file type: 1. Start a Windows Explorer -2. Chose View/Options -> File Types +2. Choose View/Options -> File Types 3. Select the path to gvim for every file type that you want to use it for. (you can also use three spaces in the file type field, for files without an extension). @@ -262,8 +262,8 @@ question if you really want to kill the In Windows 95, the window in which the commands are executed is always 25x80 characters, to be as DOS compatible as possible (this matters!). The default -system font is used. On NT, the window will be the default you have set up for -"Console" in Control Panel. On Win32s, the properties of the DOS box are +system font is used. On NT, the window will be the default you have set up for +"Console" in Control Panel. On Win32s, the properties of the DOS box are determined by _default.pif in the windows directory. *msdos-mode* @@ -283,7 +283,7 @@ sense for most shell commands which prod want Vim to start a program and return immediately, you can use the following syntax on W95 & NT: > :!start {command} -On Win32s, you will have to go to another window instead. Don't forget that +On Win32s, you will have to go to another window instead. Don't forget that you must tell Windows 3.1x to keep executing a DOS command in the background while you switch back to Vim. @@ -295,7 +295,7 @@ On Win32, the normal DOS colors can be u Additionally the system configured colors can also be used. These are known by the names Sys_XXX, where XXX is the appropriate system color name, from the following list (see the Win32 documentation for full descriptions). Case is -ignored. note: On Win32s not all of these colors are supported. +ignored. Note: On Win32s not all of these colors are supported. Sys_3DDKShadow Sys_3DFace Sys_BTNFace Sys_3DHilight Sys_3DHighlight Sys_BTNHilight @@ -366,7 +366,7 @@ without having to go to the menu bar eac This is most useful if you find yourself using a command buried in a sub-menu over and over again. The tearoff menus can be positioned where you like, and always stay just above -the Main Vim window. You can get rid of them by closing them as usual; they +the Main Vim window. You can get rid of them by closing them as usual; they also of course close when you exit Vim. *:tearoff* *:te* @@ -400,7 +400,7 @@ The rules are: b) Parameters are separated by white space. c) A parameter can be enclosed in double quotes to include white space. d) A sequence of zero or more backslashes (\) and a double quote (") - is special. The effective number of backslashes is halved, rounded + is special. The effective number of backslashes is halved, rounded down. An even number of backslashes reverses the acceptability of spaces and tabs, an odd number of backslashes produces a literal double quote. @@ -429,7 +429,7 @@ The "File/Print" menu prints the text wi printer installed this should also work: > :w >>prn -Vim supports a number of standard MS Windows features. Some of these are +Vim supports a number of standard MS Windows features. Some of these are detailed elsewhere: see |'mouse'|, |win32-hidden-menus|. *drag-n-drop-win32* @@ -441,7 +441,7 @@ be opened as normal. See |drag-n-drop|. {not in Vi} {only for Win32 versions} Normally, Vim takes control of all Alt- combinations, to increase the -number of possible mappings. This clashes with the standard use of Alt as the +number of possible mappings. This clashes with the standard use of Alt as the key for accessing menus. The quick way of getting standard behavior is to set the 'winaltkeys' option to "yes". This however prevents you from mapping Alt keys at all. @@ -449,18 +449,18 @@ Another way is to set 'winaltkeys' to "m handled by windows, other ALT keys can be mapped. This doesn't allow a dependency on the current state though. To get round this, the :simalt command allows Vim (when 'winaltkeys' is not -"yes") to fake a Windows-style Alt keypress. You can use this to map Alt key +"yes") to fake a Windows-style Alt keypress. You can use this to map Alt key combinations (or anything else for that matter) to produce standard Windows -actions. Here are some examples: > +actions. Here are some examples: > :map :simalt f This makes Alt-F pop down the 'File' menu (with the stock Menu.vim) by simulating the keystrokes Alt, F. > :map :simalt ~ -This maps Alt-Space to pop down the system menu for the Vim window. Note that +This maps Alt-Space to pop down the system menu for the Vim window. Note that ~ is used by simalt to represent the character. > :map :simalt ~n -Maps Control-N to produce the keys Alt-Space followed by N. This minimizes the +Maps Control-N to produce the keys Alt-Space followed by N. This minimizes the Vim window via the system menu. *intellimouse-wheel-problems* diff --git a/runtime/doc/gui_x11.txt b/runtime/doc/gui_x11.txt --- a/runtime/doc/gui_x11.txt +++ b/runtime/doc/gui_x11.txt @@ -1,4 +1,4 @@ -*gui_x11.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*gui_x11.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -113,7 +113,7 @@ same. Note that some fonts that have th pixel size! Additionally, the positioning of the fonts must be the same (ascent and descent). You can check this with "xlsfonts -l {fontname}". -If any of these things are also set with Vim commands, eg with +If any of these things are also set with Vim commands, e.g. with ":set guifont=Screen15", then this will override the X resources (currently 'guifont' is the only option that is supported). diff --git a/runtime/doc/hangulin.txt b/runtime/doc/hangulin.txt --- a/runtime/doc/hangulin.txt +++ b/runtime/doc/hangulin.txt @@ -1,4 +1,4 @@ -*hangulin.txt* For Vim version 7.0aa. Last change: 2001 Sep 03 +*hangulin.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Chi-Deok Hwang and Sung-Hyun Nam @@ -7,17 +7,17 @@ Introduction *hangul* ------------ It is to input hangul, the Korean language, with VIM GUI version. If you have a XIM program, you can use another |+xim| feature. -Basically, it is for whom has no XIM program. +Basically, it is for anybody who has no XIM program. Compile ------- -Next is a basic option. You can add any other configure option. > +Next is a basic option. You can add any other configure option. > ./configure --with-x --enable-multibyte --enable-fontset --enable-hangulinput -And you should check the feature.h. If |+hangul_input| feature is enabled +And you should check feature.h. If |+hangul_input| feature is enabled by configure, you can select more options such as keyboard type, 2 bulsik -or 3 bulsik. You can find keywords like next in there. > +or 3 bulsik. You can find keywords like next in there. > #define HANGUL_DEFAULT_KEYBOARD 2 #define ESC_CHG_TO_ENG_MODE @@ -38,7 +38,7 @@ You should add nexts to your global vimr Keyboard -------- You can change keyboard type (2 bulsik or 3 bulsik) using VIM_KEYBOARD -or HANGUL_KEYBOARD_TYPE environment variables. For sh, just do (2 bulsik): > +or HANGUL_KEYBOARD_TYPE environment variables. For sh, just do (2 bulsik): > export VIM_KEYBOARD="2" or > @@ -67,9 +67,9 @@ But to use Hangul, you should set 'guifo attention! the , (comma) or ; (semicolon) -And there should be no ':set guifont'. If it exists, then Gvim ignores -':set guifontset'. It means VIM runs without fontset supporting. -So, you can see only English. Hangul does not be correctly displayed. +And there should be no ':set guifont'. If it exists, then Gvim ignores +':set guifontset'. It means VIM runs without fontset supporting. +So, you can see only English. Hangul does not be correctly displayed. After 'fontset' feature is enabled, VIM does not allow using 'font'. For example, if you use > @@ -78,17 +78,17 @@ in your .gvimrc, then you should do for :hi Comment guifg=Cyan font=another_eng_font,another_your_font If you just do > :hi Comment font=another_eng_font -then you can see a GOOD error message. Be careful! +then you can see a GOOD error message. Be careful! hangul_font width should be twice than english_font width. Unsupported Feature ------------------- -Johab font not yet supported. And I don't have any plan. +Johab font not yet supported. And I don't have any plan. If you really want to use johab font, you can use the hanguldraw.c in gau package. -Hanja input not yet supported. And I don't have any plan. +Hanja input not yet supported. And I don't have any plan. If you really want to input hanja, just use VIM with hanterm. Bug or Comment diff --git a/runtime/doc/if_cscop.txt b/runtime/doc/if_cscop.txt --- a/runtime/doc/if_cscop.txt +++ b/runtime/doc/if_cscop.txt @@ -1,4 +1,4 @@ -*if_cscop.txt* For Vim version 7.0aa. Last change: 2004 Oct 21 +*if_cscop.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Andy Kahn @@ -239,12 +239,12 @@ started will have no effect! *cscopequickfix* *csqf* *E469* {not available when compiled without the |+quickfix| feature} 'cscopequickfix' specifies whether to use quickfix window to show cscope -results. This is a list of comma-separated values. Each item consists of +results. This is a list of comma-separated values. Each item consists of |cscope-find| command (s, g, d, c, t, e, f or i) and flag (+, - or 0). '+' indicates that results must be appended to quickfix window, '-' implies previous results clearance, '0' or command absence - don't use -quickfix. Search is performed from start until first command occurrence. -The default value is "" (don't use quickfix anyway). The following value +quickfix. Search is performed from start until first command occurrence. +The default value is "" (don't use quickfix anyway). The following value seems to be useful: > :set cscopequickfix=s-,c-,d-,i-,t-,e- < @@ -472,7 +472,7 @@ cscope within Vim to him. *cscope-win32* For a cscope version for Win32 see: http://iamphet.nm.ru/cscope/index.html -Win32 support was added by Sergey Khorev . Contact +Win32 support was added by Sergey Khorev . Contact him if you have Win32-specific issues. vim:tw=78:ts=8:ft=help:norl: diff --git a/runtime/doc/if_ole.txt b/runtime/doc/if_ole.txt --- a/runtime/doc/if_ole.txt +++ b/runtime/doc/if_ole.txt @@ -1,4 +1,4 @@ -*if_ole.txt* For Vim version 7.0aa. Last change: 2004 Dec 09 +*if_ole.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Paul Moore @@ -22,7 +22,7 @@ An alternative is using the client-serve 1. Activation *ole-activation* Vim acts as an OLE automation server, accessible from any automation client, -for example, Visual Basic, Python, or Perl. The Vim application "name" (its +for example, Visual Basic, Python, or Perl. The Vim application "name" (its "ProgID", in OLE terminology) is "Vim.Application". Hence, in order to start a Vim instance (or connect to an already running @@ -41,8 +41,8 @@ instance), code similar to the following $vim = new Win32::OLE 'Vim.Application'; Vim does not support acting as a "hidden" OLE server, like some other OLE -Automation servers. When a client starts up an instance of Vim, that instance -is immediately visible. Simply closing the OLE connection to the Vim instance +Automation servers. When a client starts up an instance of Vim, that instance +is immediately visible. Simply closing the OLE connection to the Vim instance is not enough to shut down the Vim instance - it is necessary to explicitly execute a quit command (for example, :qa!, :wqa). @@ -54,17 +54,17 @@ Vim exposes four methods for use by clie *ole-sendkeys* SendKeys(keys) Execute a series of keys. -This method takes a single parameter, which is a string of keystrokes. These +This method takes a single parameter, which is a string of keystrokes. These keystrokes are executed exactly as if they had been types in at the keyboard. Special keys can be given using their <..> names, as for the right hand side -of a mapping. Note: Execution of the Ex "normal" command is not supported - +of a mapping. Note: Execution of the Ex "normal" command is not supported - see below |ole-normal|. Examples (Visual Basic syntax) > Vim.SendKeys "ihello" Vim.SendKeys "ma1GV4jy`a" -These examples assume that Vim starts in Normal mode. To force Normal mode, +These examples assume that Vim starts in Normal mode. To force Normal mode, start the key sequence with CTRL-\ CTRL-N as in > Vim.SendKeys "ihello" @@ -109,7 +109,7 @@ 3. The "normal" command *ole-normal* Due to the way Vim processes OLE Automation commands, combined with the method of implementation of the ex command :normal, it is not possible to execute the -:normal command via OLE automation. Any attempt to do so will fail, probably +:normal command via OLE automation. Any attempt to do so will fail, probably harmlessly, although possibly in unpredictable ways. There is currently no practical way to trap this situation, and users must @@ -118,7 +118,7 @@ simply be aware of the limitation. 4. Registration *ole-registration* *E243* Before Vim will act as an OLE server, it must be registered in the system -registry. In order to do this, Vim should be run with a single parameter of +registry. In order to do this, Vim should be run with a single parameter of "-register". *-register* > gvim -register @@ -131,9 +131,9 @@ In some situations registering is not po registry is not writable. If you run into this problem you need to run gvim as "Administrator". -Once vim is registered, the application path is stored in the registry. Before -moving, deleting, or upgrading Vim, the registry entries should be removed -using the "-unregister" switch. +Once vim is registered, the application path is stored in the registry. +Before moving, deleting, or upgrading Vim, the registry entries should be +removed using the "-unregister" switch. *-unregister* > gvim -unregister diff --git a/runtime/doc/if_perl.txt b/runtime/doc/if_perl.txt --- a/runtime/doc/if_perl.txt +++ b/runtime/doc/if_perl.txt @@ -1,4 +1,4 @@ -*if_perl.txt* For Vim version 7.0aa. Last change: 2004 Aug 30 +*if_perl.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Sven Verdoolaege @@ -18,7 +18,7 @@ The Perl interface only works when Vim w 1. Editing Perl files *perl-editing* Vim syntax highlighting supports Perl and POD files. Vim assumes a file is -Perl code if the filename has a .pl or .pm suffix. Vim also examines the first +Perl code if the filename has a .pl or .pm suffix. Vim also examines the first line of a file, regardless of the filename suffix, to check if a file is a Perl script (see scripts.vim in Vim's syntax directory). Vim assumes a file is POD text if the filename has a .POD suffix. @@ -50,7 +50,7 @@ http://www.perl.com/CPAN/ports/nt/Standa 3. Using the Perl interface *perl-using* *:perl* *:pe* -:pe[rl] {cmd} Execute Perl command {cmd}. The current package +:pe[rl] {cmd} Execute Perl command {cmd}. The current package is "main". :pe[rl] << {endpattern} @@ -84,7 +84,7 @@ Example vim script: > *:perldo* *:perld* :[range]perld[o] {cmd} Execute Perl command {cmd} for each line in the [range], with $_ being set to the text of each line in - turn, without a trailing . Setting $_ will change + turn, without a trailing . Setting $_ will change the text, but note that it is not possible to add or delete lines using this command. The default for [range] is the whole file: "1,$". @@ -211,7 +211,7 @@ Buffer->Count() Returns the number of l *perl-Get* Buffer->Get({lnum}, {lnum}?, ...) Returns a text string of line {lnum} in the Buffer - for each {lnum} specified. An array can be passed + for each {lnum} specified. An array can be passed with a list of {lnum}'s specified. *perl-Delete* diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -1,4 +1,4 @@ -*if_pyth.txt* For Vim version 7.0aa. Last change: 2004 Jul 25 +*if_pyth.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Paul Moore @@ -85,7 +85,7 @@ just like in the Python interpreter.) 2. The vim module *python-vim* Python code gets all of its access to vim (with one exception - see -|python-output| below) via the "vim" module. The vim module implements two +|python-output| below) via the "vim" module. The vim module implements two methods, three constants, and one error object. You need to import the vim module before using it: > :python import vim @@ -113,7 +113,7 @@ Overview > Methods of the "vim" module vim.command(str) *python-command* - Executes the vim (ex-mode) command str. Returns None. + Executes the vim (ex-mode) command str. Returns None. Examples: > :py vim.command("set tw=72") :py vim.command("%s/aaa/bbb/g") @@ -130,7 +130,7 @@ vim.command(str) *python-command* vim.eval(str) *python-eval* Evaluates the expression str using the vim internal expression - evaluator (see |expression|). Returns the expression result as a + evaluator (see |expression|). Returns the expression result as a string. Examples: > :py text_width = vim.eval("&tw") @@ -156,7 +156,7 @@ Constants of the "vim" module to which the variables referred. vim.buffers *python-buffers* - A sequence object providing access to the list of vim buffers. The + A sequence object providing access to the list of vim buffers. The object supports the following operations: > :py b = vim.buffers[i] # Indexing (read-only) :py b in vim.buffers # Membership test @@ -164,7 +164,7 @@ vim.buffers *python-buffers* :py for b in vim.buffers: # Sequential access < vim.windows *python-windows* - A sequence object providing access to the list of vim windows. The + A sequence object providing access to the list of vim windows. The object supports the following operations: > :py w = vim.windows[i] # Indexing (read-only) :py w in vim.windows # Membership test @@ -179,10 +179,10 @@ vim.current *python-current* vim.current.window The current window (RO) Window vim.current.range The current line range (RO) Range - The last case deserves a little explanation. When the :python or + The last case deserves a little explanation. When the :python or :pyfile command specifies a range, this range of lines becomes the - "current range". A range is a bit like a buffer, but with all access - restricted to a subset of lines. See |python-range| for more details. + "current range". A range is a bit like a buffer, but with all access + restricted to a subset of lines. See |python-range| for more details. Output from Python *python-output* @@ -197,31 +197,31 @@ Output from Python *python-output* *python-input* Input (via sys.stdin, including input() and raw_input()) is not - supported, and may cause the program to crash. This should probably be + supported, and may cause the program to crash. This should probably be fixed. ============================================================================== 3. Buffer objects *python-buffer* -Buffer objects represent vim buffers. You can obtain them in a number of ways: +Buffer objects represent vim buffers. You can obtain them in a number of ways: - via vim.current.buffer (|python-current|) - from indexing vim.buffers (|python-buffers|) - from the "buffer" attribute of a window (|python-window|) Buffer objects have one read-only attribute - name - the full file name for -the buffer. They also have three methods (append, mark, and range; see below). +the buffer. They also have three methods (append, mark, and range; see below). -You can also treat buffer objects as sequence objects. In this context, they +You can also treat buffer objects as sequence objects. In this context, they act as if they were lists (yes, they are mutable) of strings, with each -element being a line of the buffer. All of the usual sequence operations, +element being a line of the buffer. All of the usual sequence operations, including indexing, index assignment, slicing and slice assignment, work as -you would expect. Note that the result of indexing (slicing) a buffer is a -string (list of strings). This has one unusual consequence - b[:] is different -from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas +you would expect. Note that the result of indexing (slicing) a buffer is a +string (list of strings). This has one unusual consequence - b[:] is different +from b. In particular, "b[:] = None" deletes the whole of the buffer, whereas "b = None" merely updates the variable b, with no effect on the buffer. -Buffer indexes start at zero, as is normal in Python. This differs from vim -line numbers, which start from 1. This is particularly relevant when dealing +Buffer indexes start at zero, as is normal in Python. This differs from vim +line numbers, which start from 1. This is particularly relevant when dealing with marks (see below) which use vim line numbers. The buffer object methods are: @@ -255,12 +255,12 @@ Examples (assume b is the current buffer ============================================================================== 4. Range objects *python-range* -Range objects represent a part of a vim buffer. You can obtain them in a +Range objects represent a part of a vim buffer. You can obtain them in a number of ways: - via vim.current.range (|python-current|) - from a buffer's range() method (|python-buffer|) -A range object is almost identical in operation to a buffer object. However, +A range object is almost identical in operation to a buffer object. However, all operations are restricted to the lines within the range (this line range can, of course, change as a result of slice assignments, line deletions, or the range.append() method). @@ -283,11 +283,11 @@ Example (assume r is the current range): ============================================================================== 5. Window objects *python-window* -Window objects represent vim windows. You can obtain them in a number of ways: +Window objects represent vim windows. You can obtain them in a number of ways: - via vim.current.window (|python-current|) - from indexing vim.windows (|python-windows|) -You can manipulate window objects only through their attributes. They have no +You can manipulate window objects only through their attributes. They have no methods, and no sequence or other interface. Window attributes are: diff --git a/runtime/doc/if_ruby.txt b/runtime/doc/if_ruby.txt --- a/runtime/doc/if_ruby.txt +++ b/runtime/doc/if_ruby.txt @@ -1,4 +1,4 @@ -*if_ruby.txt* For Vim version 7.0aa. Last change: 2004 Mar 14 +*if_ruby.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Shugo Maeda @@ -32,7 +32,7 @@ 1. Commands *ruby-commands* Execute Ruby script {script}. {endpattern} must NOT be preceded by any white space. If {endpattern} is omitted, it defaults to a dot '.' - like for the |:append| and |:insert| commands. This + like for the |:append| and |:insert| commands. This form of the |:ruby| command is mainly useful for including ruby code in vim scripts. Note: This command doesn't work when the Ruby feature @@ -60,7 +60,7 @@ Example Vim script: > *:rubydo* *:rubyd* *E265* :[range]rubyd[o] {cmd} Evaluate Ruby command {cmd} for each line in the [range], with $_ being set to the text of each line in - turn, without a trailing . Setting $_ will change + turn, without a trailing . Setting $_ will change the text, but note that it is not possible to add or delete lines using this command. The default for [range] is the whole file: "1,$". @@ -115,7 +115,7 @@ VIM::command({cmd}) *ruby-evaluate* VIM::evaluate({expr}) Evaluates {expr} using the vim internal expression evaluator (see - |expression|). Returns the expression result as a string. + |expression|). Returns the expression result as a string. ============================================================================== 3. VIM::Buffer objects *ruby-buffer* @@ -126,7 +126,7 @@ Class Methods: current Returns the current buffer object. count Returns the number of buffers. -self[{n}] Returns the buffer object for the number {n}. The first number +self[{n}] Returns the buffer object for the number {n}. The first number is 0. Methods: @@ -151,7 +151,7 @@ Class Methods: current Returns the current window object. count Returns the number of windows. -self[{n}] Returns the window object for the number {n}. The first number +self[{n}] Returns the window object for the number {n}. The first number is 0. Methods: diff --git a/runtime/doc/if_sniff.txt b/runtime/doc/if_sniff.txt --- a/runtime/doc/if_sniff.txt +++ b/runtime/doc/if_sniff.txt @@ -1,4 +1,4 @@ -*if_sniff.txt* For Vim version 7.0aa. Last change: 2001 Sep 03 +*if_sniff.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL @@ -45,7 +45,7 @@ 2. Commands *sniff-commands* :sni[ff] Display all possible requests and the connection status -Most requests require a symbol (identifier) as parameter. If it is omitted, +Most requests require a symbol (identifier) as parameter. If it is omitted, Vim will use the current word under the cursor. The available requests are listed below: @@ -54,7 +54,7 @@ request mapping description connect sc Establish connection with SNiFF+. Make sure SNiFF+ is prepared for this in the Preferences -disconnect sq Disconnect from SNiFF+. You can reconnect any +disconnect sq Disconnect from SNiFF+. You can reconnect any time with :sniff connect (or 'sc') toggle st Toggle between implementation and definition file @@ -80,7 +80,7 @@ show-docu sd Show documentation of symb gen-docu sD Generate documentation of symbol The mappings are defined in a file 'sniff.vim', which is part of every SNiFF+ -product ($SNIFF_DIR/config/sniff.vim). This file is sourced whenever Vim +product ($SNIFF_DIR/config/sniff.vim). This file is sourced whenever Vim connects to SNiFF+. ============================================================================== diff --git a/runtime/doc/if_tcl.txt b/runtime/doc/if_tcl.txt --- a/runtime/doc/if_tcl.txt +++ b/runtime/doc/if_tcl.txt @@ -1,4 +1,4 @@ -*if_tcl.txt* For Vim version 7.0aa. Last change: 2004 Jan 17 +*if_tcl.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Ingo Wilken @@ -36,7 +36,7 @@ 1. Commands *tcl-ex-commands* *E571* wasn't compiled in. To avoid errors, see |script-here|. -{endmarker} must NOT be preceded by any white space. If {endmarker} is +{endmarker} must NOT be preceded by any white space. If {endmarker} is omitted from after the "<<", a dot '.' must be used after {script}, like for the |:append| and |:insert| commands. This form of the |:tcl| command is mainly useful for including tcl code in Vim @@ -152,7 +152,7 @@ Commands: ::vim::window {option} *tcl-window* Provides access to vim windows. Currently only the "list" option is - implemented. This creates a window command (see |tcl-window-cmds|) for + implemented. This creates a window command (see |tcl-window-cmds|) for each window, and returns a list of the command names as the result. Example: > set wins [::vim::window list] @@ -227,7 +227,7 @@ The ::vim::current(window) variable cont for the current window. A window command is automatically deleted when the corresponding vim window is closed. -Lets assume the name of the window command is stored in the Tcl variable "win", +Let's assume the name of the window command is stored in the Tcl variable "win", i.e. "$win" calls the command. The following options are available: > $win buffer # Create Tcl command for window's buffer. @@ -306,7 +306,7 @@ changed, all marks in the buffer are aut the buffer's contents made by Tcl commands can be undone with the "undo" vim command (see |undo|). -Lets assume the name of the buffer command is stored in the Tcl variable "buf", +Let's assume the name of the buffer command is stored in the Tcl variable "buf", i.e. "$buf" calls the command. The following options are available: > $buf append {n} {str} # Append a line to buffer, after line {n}. @@ -497,7 +497,7 @@ This procedure runs an ex command on eac } Use it like this: :tcl eachbuf %s/foo/bar/g -Be careful with Tcl's string and backslash substitution, tough. If in doubt, +Be careful with Tcl's string and backslash substitution, tough. If in doubt, surround the ex command with curly braces. diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -1,4 +1,4 @@ -*indent.txt* For Vim version 7.0aa. Last change: 2005 Feb 24 +*indent.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -237,7 +237,7 @@ assume a 'shiftwidth' of 4. } } < bN If N != 0 Vim will align a final "break" with the case label, - so that case..break looks like a sort of block. (default: 0). + so that case..break looks like a sort of block. (default: 0). cino= cino=b1 > switch (x) switch(x) @@ -325,7 +325,7 @@ assume a 'shiftwidth' of 4. ********/ ********/ < (Example uses ":set comments& comments-=s1:/* comments^=s0:/*") - /N Indent comment lines N characters extra. (default 0). + /N Indent comment lines N characters extra. (default 0). cino= cino=/4 > a = b; a = b; /* comment */ /* comment */ @@ -381,7 +381,7 @@ assume a 'shiftwidth' of 4. the last non-white character in its line and it is not the closing parentheses, indent the following line N characters relative to the outer context (i.e. start of the line or the - next unclosed parentheses). (default: 0). + next unclosed parentheses). (default: 0). cino=(0 cino=(0,W4 > a_long_line( a_long_line( @@ -406,7 +406,7 @@ assume a 'shiftwidth' of 4. < *java-cinoptions* *java-indenting* jN Indent java anonymous classes correctly. The value 'N' is - currently unused but must be non-zero (e.g. 'j1'). 'j1' will + currently unused but must be non-zero (e.g. 'j1'). 'j1' will indent for example the following code snippet correctly: > object.add(new ChangeListener() { @@ -451,31 +451,31 @@ REMARKS ABOUT SPECIFIC INDENT FILES ~ FORTRAN *fortran-indent* -Block if, select case, and where constructs are indented. Comments, labelled +Block if, select case, and where constructs are indented. Comments, labelled statements and continuation lines are indented if the Fortran is in free source form, whereas they are not indented if the Fortran is in fixed source -form because of the left margin requirements. Hence manual indent corrections +form because of the left margin requirements. Hence manual indent corrections will be necessary for labelled statements and continuation lines when fixed -source form is being used. For further discussion of the method used for the +source form is being used. For further discussion of the method used for the detection of source format see |fortran-syntax|. Do loops ~ -All do loops are left unindented by default. Do loops can be unstructured in +All do loops are left unindented by default. Do loops can be unstructured in Fortran with (possibly multiple) loops ending on a labelled executable -statement of almost arbitrary type. Correct indentation requires -compiler-quality parsing. Old code with do loops ending on labelled statements +statement of almost arbitrary type. Correct indentation requires +compiler-quality parsing. Old code with do loops ending on labelled statements of arbitrary type can be indented with elaborate programs such as Tidy -(http://www.unb.ca/chem/ajit/f_tidy.htm). Structured do/continue loops are +(http://www.unb.ca/chem/ajit/f_tidy.htm). Structured do/continue loops are also left unindented because continue statements are also used for purposes -other than ending a do loop. Programs such as Tidy can convert structured -do/continue loops to the do/enddo form. Do loops of the do/enddo variety can -be indented. If you use only structured loops of the do/enddo form, you should +other than ending a do loop. Programs such as Tidy can convert structured +do/continue loops to the do/enddo form. Do loops of the do/enddo variety can +be indented. If you use only structured loops of the do/enddo form, you should declare this by setting the fortran_do_enddo variable in your .vimrc as follows > let fortran_do_enddo=1 -in which case do loops will be indented. If all your loops are of do/enddo +in which case do loops will be indented. If all your loops are of do/enddo type only in, say, .f90 files, then you should set a buffer flag with an autocommand such as > diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt --- a/runtime/doc/index.txt +++ b/runtime/doc/index.txt @@ -1,4 +1,4 @@ -*index.txt* For Vim version 7.0aa. Last change: 2005 Feb 25 +*index.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -800,7 +800,7 @@ tag char note action in Normal mo ============================================================================== 3. Visual mode *visual-index* -Most commands in Visual mode are the same as in Normal mode. The ones listed +Most commands in Visual mode are the same as in Normal mode. The ones listed here are those that are different. tag command note action in Visual mode ~ diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1,4 +1,4 @@ -*insert.txt* For Vim version 7.0aa. Last change: 2005 Feb 21 +*insert.txt* For Vim version 7.0aa. Last change: 2005 Apr 08 VIM REFERENCE MANUAL by Bram Moolenaar @@ -190,7 +190,7 @@ CTRL-Q Same as CTRL-V. work then. It does work in the GUI. CTRL-X Enter CTRL-X mode. This is a sub-mode where commands can - be given to complete words or scroll the window. See + be given to complete words or scroll the window. See |i_CTRL-X| and |ins-completion|. {not in Vi} *i_CTRL-E* @@ -271,7 +271,7 @@ entered directly. This way you can ente first char mode max nr of chars max value ~ (none) decimal 3 255 -o or O octal 3 255 +o or O octal 3 377 (255) x or X hexadecimal 2 ff (255) u hexadecimal 4 ffff (65535) U hexadecimal 8 7fffffff (2147483647) @@ -392,7 +392,7 @@ The CTRL-G j and CTRL-G k commands can b column. Example: > int i; int j; -Position the cursor on the first "int", type "istaticj ". The +Position the cursor on the first "int", type "istatic j ". The result is: > static int i; int j; @@ -726,7 +726,7 @@ CTRL-X CTRL-K Search the files given wi keyword replaces the previous matching keyword. *i_CTRL-X_CTRL-T* -CTRL-X CTRL-T Works as CTRL-X CTRL-K, but in a special way. It uses +CTRL-X CTRL-T Works as CTRL-X CTRL-K, but in a special way. It uses the 'thesaurus' option instead of 'dictionary'. If a match is found in the thesaurus file, all the remaining words on the same line are included as diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1,4 +1,4 @@ -*map.txt* For Vim version 7.0aa. Last change: 2005 Feb 27 +*map.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -22,7 +22,7 @@ is to define a sequence commands for a f :map a=strftime("%c") -This appends the current date and time after the cursor. (in <> notation |<>|) +This appends the current date and time after the cursor (in <> notation |<>|). There are commands to enter new mappings, remove mappings and list mappings. See |map-overview| for the various forms of "map" and their relationships with @@ -174,7 +174,7 @@ There are five sets of mappings - For Visual mode: When typing commands while the Visual area is highlighted. - For Operator-pending mode: When an operator is pending (after "d", "y", "c", etc.). Example: ":omap { w" makes "y{" work like "yw" and "d{" like "dw". -- For Insert mode. These are also used in Replace mode. +- For Insert mode. These are also used in Replace mode. - For Command-line mode: When entering a ":" or "/" command. There are no separate mappings for Select mode. The same as for Visual mode @@ -811,7 +811,7 @@ feature}. ============================================================================== 4. User-defined commands *user-commands* -It is possible to define your own Ex commands. A user-defined command can act +It is possible to define your own Ex commands. A user-defined command can act just like a built-in command (it can have a range or arguments, arguments can be completed as filenames or buffer names, etc), except that when the command is executed, it is transformed into a normal ex command and then executed. @@ -820,7 +820,7 @@ For starters: See section |40.2| in the *E183* *user-cmd-ambiguous* All user defined commands must start with an uppercase letter, to avoid -confusion with builtin commands. (There are a few builtin commands, notably +confusion with builtin commands. (There are a few builtin commands, notably :Next, :Print and :X, which do start with an uppercase letter. The builtin will always take precedence in these cases). The other characters of the user command can be uppercase letters, lowercase letters or digits. When using @@ -829,8 +829,8 @@ ambiguous. For example, the command ":C without an argument, or the command ":Cc" with argument "2". It is advised to put a space between the command name and the argument to avoid these problems. -When using a user-defined command, the command can be abbreviated. However, if -an abbreviation is not unique, an error will be issued. Furthermore, a +When using a user-defined command, the command can be abbreviated. However, if +an abbreviation is not unique, an error will be issued. Furthermore, a built-in command will always take precedence. Example: > @@ -846,7 +846,7 @@ It is recommended that full names for us scripts. :com[mand] *:com* *:command* - List all user-defined commands. When listing commands, + List all user-defined commands. When listing commands, the characters in the first two columns are ! Command has the -bang attribute " Command has the -register attribute @@ -858,8 +858,8 @@ scripts. *E174* *E182* :com[mand][!] [{attr}...] {cmd} {rep} Define a user command. The name of the command is - {cmd} and its replacement text is {rep}. The command's - attributes (see below) are {attr}. If the command + {cmd} and its replacement text is {rep}. The command's + attributes (see below) are {attr}. If the command already exists, an error is reported, unless a ! is specified, in which case the command is redefined. @@ -871,20 +871,20 @@ scripts. Command attributes -User-defined commands are treated by Vim just like any other ex commands. They -can have arguments, or have a range specified. Arguments are subject to -completion as filenames, buffers, etc. Exactly how this works depends upon the +User-defined commands are treated by Vim just like any other ex commands. They +can have arguments, or have a range specified. Arguments are subject to +completion as filenames, buffers, etc. Exactly how this works depends upon the command's attributes, which are specified when the command is defined. There are a number of attributes, split into four categories: argument -handling, completion behavior, range handling, and special cases. The +handling, completion behavior, range handling, and special cases. The attributes are described below, by category. Argument handling *E175* *E176* By default, a user defined command will take no arguments (and an error is -reported if any are supplied). However, it is possible to specify that the -command can take arguments, using the -nargs attribute. Valid cases are: +reported if any are supplied). However, it is possible to specify that the +command can take arguments, using the -nargs attribute. Valid cases are: -nargs=0 No arguments are allowed (the default) -nargs=1 Exactly one argument is required @@ -961,11 +961,11 @@ The following example lists user names t Range handling *E177* *E178* -By default, user-defined commands do not accept a line number range. However, +By default, user-defined commands do not accept a line number range. However, it is possible to specify that the command does take a range (the -range attribute), or that it takes an arbitrary count value, either in the line number position (-range=N, like the |:split| command) or as a "count" -argument (-count=N, like the |:Next| command). Possible attributes are: +argument (-count=N, like the |:Next| command). Possible attributes are: -range Range allowed, default is current line -range=% Range allowed, default is whole file (1,$) @@ -997,9 +997,9 @@ replacement text separately. Replacement text The replacement text for a user defined command is scanned for special escape -sequences, using <...> notation. Escape sequences are replaced with values -from the entered command line, and all other text is copied unchanged. The -resulting string is executed as an Ex command. If the initial < of an escape +sequences, using <...> notation. Escape sequences are replaced with values +from the entered command line, and all other text is copied unchanged. The +resulting string is executed as an Ex command. If the initial < of an escape sequence is preceded by a backslash, the sequence is copied unchanged. The valid escape sequences are @@ -1017,7 +1017,7 @@ The valid escape sequences are expands to nothing. ** ** (See the '-register' attribute) The optional register, - if specified. Otherwise, expands to nothing. + if specified. Otherwise, expands to nothing. is a synonym for this. ** The command arguments, exactly as supplied (but as @@ -1034,7 +1034,7 @@ If the first two characters of an escape for use in an expression. This uses the argument as one single value. To allow commands to pass their arguments on to a user-defined function, there -is a special form ("function args"). This splits the command +is a special form ("function args"). This splits the command arguments at spaces and Tabs, quotes each argument individually, and the sequence is replaced by the comma-separated list of quoted arguments. See the Mycmd example below. When there is no argument, also has no diff --git a/runtime/doc/mbyte.txt b/runtime/doc/mbyte.txt --- a/runtime/doc/mbyte.txt +++ b/runtime/doc/mbyte.txt @@ -1,4 +1,4 @@ -*mbyte.txt* For Vim version 7.0aa. Last change: 2005 Feb 13 +*mbyte.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar et al. @@ -436,7 +436,7 @@ Useful utilities for converting the char ftp://ftp.cuhk.hk/pub/chinese/ifcss/software/unix/convert/hc-30.tar.gz Korean: hmconv - Hmconv is Korean code conversion utility especially for E-mail. It can + Hmconv is Korean code conversion utility especially for E-mail. It can convert between EUC-KR and ISO-2022-KR. Hmconv can be found at: ftp://ftp.kaist.ac.kr/pub/hangul/code/hmconv/ @@ -444,7 +444,7 @@ Useful utilities for converting the char Lv is a Powerful Multilingual File Viewer. And it can be worked as |charset| converter. Supported |charset|: ISO-2022-CN, ISO-2022-JP, ISO-2022-KR, EUC-CN, EUC-JP, EUC-KR, EUC-TW, UTF-7, UTF-8, ISO-8859 - series, Shift_JIS, Big5 and HZ. Lv can be found at: + series, Shift_JIS, Big5 and HZ. Lv can be found at: http://www.ff.iij4u.or.jp/~nrt/freeware/lv4495.tar.gz @@ -506,7 +506,7 @@ Now start xterm with > or, for bigger character: > xterm -u8 -fn -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1 -and you will have a working UTF-8 terminal emulator. Try both > +and you will have a working UTF-8 terminal emulator. Try both > cat utf-8-demo.txt vim utf-8-demo.txt @@ -761,7 +761,7 @@ is suitable for complex input, such as C number of Hira-gana characters are 76. So, first, we pre-input text as pronounced in Hira-gana, second, we convert Hira-gana to Kanji or Kata-Kana, if needed. There are some Kana-Kanji conversion server: jserver - (distributed with Wnn, see below) and canna. Canna could be found at: + (distributed with Wnn, see below) and canna. Canna could be found at: ftp://ftp.nec.co.jp/pub/Canna/ (no longer works). There is a good input system: Wnn4.2. Wnn 4.2 contains, @@ -801,7 +801,7 @@ Use the RPM or port for your system. Preedit Area and Status Area are performed by the client application in the area of application. The client application is directed by the |IM-server| to display all pre-edit data at the location of text - insertion. The client registers callbacks invoked by the input method + insertion. The client registers callbacks invoked by the input method during pre-editing. *. over-the-spot *OverTheSpot* Status Area is created in a fixed position within the area of application, @@ -1231,7 +1231,7 @@ is no longer relevant in the GTK+ 2 GUI. Up to two combining characters can be used. The combining character is drawn on top of the preceding character. When editing text a composing character is mostly considered part of the preceding character. For example "x" will -delete a character and its following composing characters by default. If the +delete a character and its following composing characters by default. If the 'delcombine' option is on, then pressing 'x' will delete the combining characters, one at a time, then the base character. But when inserting, you type the first character and the following composing characters separately, @@ -1253,7 +1253,7 @@ characters present in the selected font. Useful commands: - "ga" shows the decimal, hexadecimal and octal value of the character under - the cursor. If there are composing characters these are shown too. (if the + the cursor. If there are composing characters these are shown too. (If the message is truncated, use ":messages"). - "g8" shows the bytes used in a UTF-8 character, also the composing characters, as hex numbers. diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -1,4 +1,4 @@ -*motion.txt* For Vim version 7.0aa. Last change: 2005 Feb 08 +*motion.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -72,7 +72,7 @@ and end position. Generally, motions th characterwise). However, there are some exceptions. *exclusive* *inclusive* -A character motion is either inclusive or exclusive. When inclusive, the start +A character motion is either inclusive or exclusive. When inclusive, the start and end position of the motion are included in the operation. When exclusive, the last character towards the end of the buffer is not included. Linewise motions always include the start and end position. @@ -1061,7 +1061,7 @@ g; Go to [count] older position in cha *g,* *E663* g, Go to [count] newer cursor position in change list. - Just like "g;| but in the opposite direction. + Just like |g;| but in the opposite direction. (not a motion command) {not in Vi} {not available without the +jumplist feature} diff --git a/runtime/doc/netbeans.txt b/runtime/doc/netbeans.txt --- a/runtime/doc/netbeans.txt +++ b/runtime/doc/netbeans.txt @@ -1,4 +1,4 @@ -*netbeans.txt* For Vim version 7.0aa. Last change: 2005 Jan 31 +*netbeans.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Gordon Prieur @@ -38,7 +38,7 @@ Visit http://www.sun.com for more inform product line. Current releases of NetBeans provide full support for Java and limited support -for C, C++, and Fortran. Current releases of Sun ONE Studio provide full +for C, C++, and Fortran. Current releases of Sun ONE Studio provide full support for Java, C, C++, and Fortran. The interface to NetBeans is also supported by Agide, the A-A-P GUI IDE. @@ -50,12 +50,12 @@ See the A-A-P website for information: h ============================================================================== 2. NetBeans Key Bindings *netbeans-keybindings* -Vim understands a number of key bindings that execute NetBeans commands. These -are typically all the Function key combinations. To execute a NetBeans command, -the user must press the Pause key followed by a NetBeans key binding. For -example, in order to compile a Java file, the NetBeans key binding is "F9". So, -while in vim, press "Pause F9" to compile a java file. To toggle a breakpoint -at the current line, press "Pause Shift F8". +Vim understands a number of key bindings that execute NetBeans commands. +These are typically all the Function key combinations. To execute a NetBeans +command, the user must press the Pause key followed by a NetBeans key binding. +For example, in order to compile a Java file, the NetBeans key binding is +"F9". So, while in vim, press "Pause F9" to compile a java file. To toggle a +breakpoint at the current line, press "Pause Shift F8". The Pause key is Function key 21. If you don't have a working Pause key and want to use F8 instead, use: > @@ -81,10 +81,10 @@ In case you do not want the NetBeans int uncommenting a line with "--disable-netbeans" in the Makefile. Currently, only gvim is supported in this integration as NetBeans does not -have means to supply a terminal emulator for the vim command. Furthermore, +have means to supply a terminal emulator for the vim command. Furthermore, there is only GUI support for GTK, GNOME, and Motif. -If Motif support is required the user must supply XPM libraries. See +If Motif support is required the user must supply XPM libraries. See |workshop-xpm| for details on obtaining the latest version of XPM. @@ -99,45 +99,45 @@ XPM by yourself or use precompiled libra ============================================================================== 4. Downloading NetBeans *netbeans-download* -The NetBeans IDE is available for download from netbeans.org. You can download +The NetBeans IDE is available for download from netbeans.org. You can download a released version, download sources, or use CVS to download the current -source tree. If you choose to download sources, follow directions from +source tree. If you choose to download sources, follow directions from netbeans.org on building NetBeans. Depending on the version of NetBeans you download, you may need to do further -work to get the required External Editor module. This is the module which lets -NetBeans work with gvim (or xemacs :-). See http://externaleditor.netbeans.org +work to get the required External Editor module. This is the module which lets +NetBeans work with gvim (or xemacs :-). See http://externaleditor.netbeans.org for details on downloading this module if your NetBeans release does not have it. -For C, C++, and Fortran support you will also need the cpp module. See +For C, C++, and Fortran support you will also need the cpp module. See http://cpp.netbeans.org for information regarding this module. You can also download Sun ONE Studio from Sun Microsystems, Inc for a 30 day -free trial. See http://www.sun.com for further details. +free trial. See http://www.sun.com for further details. ============================================================================== 5. Preparing NetBeans for Vim *netbeans-preparation* In order for NetBeans to work with vim, the NetBeans External Editor module -must be loaded and enabled. If you have a Sun ONE Studio Enterprise Edition -then this module should be loaded and enabled. If you have a NetBeans release +must be loaded and enabled. If you have a Sun ONE Studio Enterprise Edition +then this module should be loaded and enabled. If you have a NetBeans release you may need to find another way of obtaining this open source module. You can check if you have this module by opening the Tools->Options dialog and drilling down to the "Modules" list (IDE Configuration->System->Modules). If your Modules list has an entry for "External Editor" you must make sure -it is enabled (the "Enabled" property should have the value "True"). If your +it is enabled (the "Enabled" property should have the value "True"). If your Modules list has no External Editor see the next section on |obtaining-exted|. ============================================================================== 6. Obtaining the External Editor Module *obtaining-exted* -There are 2 ways of obtaining the External Editor module. The easiest way +There are 2 ways of obtaining the External Editor module. The easiest way is to use the NetBeans Update Center to download and install the module. Unfortunately, some versions do not have this module in their update -center. If you cannot download via the update center you will need to -download sources and build the module. I will try and get the module +center. If you cannot download via the update center you will need to +download sources and build the module. I will try and get the module available from the NetBeans Update Center so building will be unnecessary. Also check http://externaleditor.netbeans.org for other availability options. @@ -152,22 +152,22 @@ Assuming you have loaded and enabled the as described in |netbeans-preparation| all you need to do is verify that the gvim command line is properly configured for your environment. -Open the Tools->Options dialog and open the Editing category. Select the -External Editor. The right hand pane should contain a Properties tab and -an Expert tab. In the Properties tab make sure the "Editor Type" is set -to "Vim". In the Expert tab make sure the "Vim Command" is correct. +Open the Tools->Options dialog and open the Editing category. Select the +External Editor. The right hand pane should contain a Properties tab and +an Expert tab. In the Properties tab make sure the "Editor Type" is set +to "Vim". In the Expert tab make sure the "Vim Command" is correct. -You should be careful if you change the "Vim Command". There are command +You should be careful if you change the "Vim Command". There are command line options there which must be there for the connection to be properly -set up. You can change the command name but thats about it. If your gvim -can be found by your $PATH then the VIM Command can start with "gvim". If +set up. You can change the command name but that's about it. If your gvim +can be found by your $PATH then the VIM Command can start with "gvim". If you don't want gvim searched from your $PATH then hard code in the full -Unix path name. At this point you should get a gvim for any source file +Unix path name. At this point you should get a gvim for any source file you open in NetBeans. If some files come up in gvim and others (with different file suffixes) come up in the default NetBeans editor you should verify the MIME type in the -Expert tab MIME Type property. NetBeans is MIME oriented and the External +Expert tab MIME Type property. NetBeans is MIME oriented and the External Editor will only open MIME types specified in this property. ============================================================================== @@ -194,7 +194,7 @@ Partial writes disallowed for NetBeans b NetBeans connection lost for this buffer NetBeans has become confused about the state of this file. Rather than risc data corruption, NetBeans has severed the - connection for this file. Vim will take over responsibility + connection for this file. Vim will take over responsibility for saving changes to this file and NetBeans will no longer know of these changes. @@ -248,13 +248,13 @@ NetBeans (see http://externaleditor.netb work with Agide (A-A-P GUI IDE, see http://www.a-a-p.org). The extensions are marked with "version 2.1". -Version 2.2 of the protocol has several minor changes which should only -affect NetBeans users (ie, not Agide users). However, a bug was fixed which -could cause confusion. The netbeans_saved() function sent a "save" protocol -command. In protocol version 2.1 and earlier this was incorrectly interpreted -as a notification that a write had taken place. In reality, it told NetBeans -to save the file so multiple writes were being done. This caused various -problems and has been fixed in 2.2. To decrease the likelihood of this +Version 2.2 of the protocol has several minor changes which should only affect +NetBeans users (ie, not Agide users). However, a bug was fixed which could +cause confusion. The netbeans_saved() function sent a "save" protocol +command. In protocol version 2.1 and earlier this was incorrectly interpreted +as a notification that a write had taken place. In reality, it told NetBeans +to save the file so multiple writes were being done. This caused various +problems and has been fixed in 2.2. To decrease the likelihood of this confusion happening again, netbeans_saved() has been renamed to netbeans_save_buffer(). @@ -428,7 +428,7 @@ initDone Mark the buffer as ready for us insertDone Sent by NetBeans to tell vim an initial file insert is done. - This triggers a read message being printed. Prior to version + This triggers a read message being printed. Prior to version 2.3, no read messages were displayed after opening a file. New in version 2.3. @@ -466,8 +466,8 @@ save Save the buffer when it was modifi New in version 2.2. saveDone - Sent by NetBeans to tell vim a save is done. This triggers - a save message being printed. Prior to version 2.3, no save + Sent by NetBeans to tell vim a save is done. This triggers + a save message being printed. Prior to version 2.3, no save messages were displayed after a save. New in version 2.3. @@ -539,7 +539,7 @@ showBalloon text specialKeys Map a set of keys (mostly function keys) to be passed back - to NetBeans for processing. This lets NetBeans hotkeys be + to NetBeans for processing. This lets NetBeans hotkeys be used from vim. Implemented in version 2.3. @@ -652,7 +652,7 @@ buttonRelease button lnum col at the time of the release. Only for buffers that are owned by NetBeans. This event is not sent if the button was released while the mouse was in the status line or in a - separator line. If col is less than 1 the button release was + separator line. If col is less than 1 the button release was in the sign area. New in version 2.2. @@ -772,8 +772,8 @@ 11. NetBeans Commands *netbeans-comm *:nbkey* :nbkey key Pass the key to NetBeans for processing -Pass the key to NetBeans for hot-key processing. You should not need to use -this command directly. However, NetBeans passes a list of hot-keys to Vim at +Pass the key to NetBeans for hot-key processing. You should not need to use +this command directly. However, NetBeans passes a list of hot-keys to Vim at startup and when one of these keys is pressed, this command is generated to send the key press back to NetBeans. diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 7.0aa. Last change: 2005 Mar 28 +*options.txt* For Vim version 7.0aa. Last change: 2005 Apr 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -3209,8 +3209,8 @@ A jump table for the options with a shor 't' Include tearoff menu items. Currently only works for Win32, GTK+, and Motif 1.2 GUI. - 'T' Include Toolbar. Currently only in Win32, GTK+, Motif, and - Athena GUIs. + 'T' Include Toolbar. Currently only in Win32, GTK+, Motif, Photon + and Athena GUIs. 'r' Right-hand scrollbar is always present. 'R' Right-hand scrollbar is present when there is a vertically @@ -5060,7 +5060,8 @@ A jump table for the options with a shor feature} {not in Vi} This is a comma-separated list of words that specifies how - 'scrollbind' windows should behave. + 'scrollbind' windows should behave. 'sbo' stands for ScrollBind + Options. The following words are available: ver Bind vertical scrolling for 'scrollbind' windows hor Bind horizontal scrolling for 'scrollbind' windows @@ -5631,7 +5632,7 @@ A jump table for the options with a shor {not available when compiled without the |+syntax| feature} When on spell checking will be done. See |spell|. - The languages used are specified with 'spelllang'. + The languages are specified with 'spelllang'. *'spelllang'* *'spl'* 'spelllang' 'spl' string (default empty) @@ -5644,8 +5645,8 @@ A jump table for the options with a shor set spelllang=en_us,nl < This means both US English and Dutch words are recognized. Words that are not recognized will be highlighted. - When 'encoding' is set the word lists are loaded again. Thus it's a - good idea to set 'spelllang' after setting 'encoding'. + When 'encoding' is set the word lists are reloaded. Thus it's a good + idea to set 'spelllang' after setting 'encoding'. More info at |spell|. *'splitbelow'* *'sb'* *'nosplitbelow'* *'nosb'* diff --git a/runtime/doc/os_390.txt b/runtime/doc/os_390.txt --- a/runtime/doc/os_390.txt +++ b/runtime/doc/os_390.txt @@ -1,4 +1,4 @@ -*os_390.txt* For Vim version 7.0aa. Last change: 2003 Jun 03 +*os_390.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Ralf Schandl @@ -12,17 +12,17 @@ 3. Building VIM for z/OS UNIX |zOS-buil 4. ASCII/EBCDIC dependent scripts |zOS-has-ebcdic| 5. XTerm Problems |zOS-xterm| 6. Motif Problems |zOS-Motif| -7 Bugs |zOS-Bugs| +7. Bugs |zOS-Bugs| 8. Known weaknesses |zOS-weaknesses| 9. Changes |zOS-changes| DISCLAIMER: ~ -We are IBM employees, but IBM is not responsible for this port. This is our +We are IBM employees, but IBM is not responsible for this port. This is our private fun, and is provided in the hopes that it may be useful to others. Please note that this software has NOT been submitted to any formal IBM -testing and is published AS IS. Please do not contact IBM for support for this -software, as it is not an official component of any IBM product. IT IS NOT +testing and is published AS IS. Please do not contact IBM for support for this +software, as it is not an official component of any IBM product. IT IS NOT SUPPORTED, GUARANTEED, OR RELATED WHATSOEVER TO IBM. Contributors: ~ @@ -60,22 +60,22 @@ Vim should compile, link, and run right UNIX mainframe. I've personally run it on z/OS V1R2 and V1R3 machines without problems. -Many changes had to be done to the code to port Vim to z/OS UNIX. As like -most UNIX programs, Vim contained heavy ASCII dependencies. I might have +Many changes had to be done to the code to port Vim to z/OS UNIX. As like +most UNIX programs, Vim contained heavy ASCII dependencies. I might have missed an ASCII dependency, or it is possible that a new one has been added -with a feature or bug fix. Most programmers are simply not aware of possible -ASCII/EBCDIC conversion issues. If you hit a problem that seems related to +with a feature or bug fix. Most programmers are simply not aware of possible +ASCII/EBCDIC conversion issues. If you hit a problem that seems related to this, feel free to contact us at the email addresses above. One indication of ASCII/EBCDIC conversion problems is screen corruption with "unprintable" characters. For example, at one point the errorbell was broken -in Vim. Any time Vim tried to ring the terminal bell an ASCII character 0x07 -would be printed. This works fine on most terminals, but is broken on an -EBCDIC one. The correct solution was to define a different value for the bell +in Vim. Any time Vim tried to ring the terminal bell an ASCII character 0x07 +would be printed. This works fine on most terminals, but is broken on an +EBCDIC one. The correct solution was to define a different value for the bell character on EBCDIC systems. Remember, it's only possible to fix a bug if the community knows about it. -Don't rely on someone else to report it! See the section |bug-reports|. +Don't rely on someone else to report it! See the section |bug-reports|. ============================================================================== 3. Building VIM for z/OS UNIX *OS390-building* *zOS-building* @@ -83,12 +83,12 @@ 3. Building VIM for z/OS UNIX *OS390-bu A word on debugging code first: ~ The normal run of configure adds the flag '-g' to the compiler options, -to include debugging information into the executable. This information +to include debugging information into the executable. This information are normally removed from the executable with the strip command during -installation. On z/OS UNIX, it is not possible to remove this from -the executable. The strip command exists on z/OS UNIX and is called +installation. On z/OS UNIX, it is not possible to remove this from +the executable. The strip command exists on z/OS UNIX and is called during the installation, but it does nothing. It is equivalent to the -'touch' command. This is due to the way debug symbols are stored in the +'touch' command. This is due to the way debug symbols are stored in the objects generated by the compiler. If you want to build Vim without debugging code, export the environment @@ -99,11 +99,11 @@ variable CFLAGS set to an empty string b Building without X11: ~ -Note: Use cc to build Vim. The c89 compiler has stricter syntax checking +Note: Use cc to build Vim. The c89 compiler has stricter syntax checking and will not compile Vim cleanly. If you build VIM without X11 support, compiling and building is -straightforward. Don't forget to export _CC_CCMODE=1 before calling +straightforward. Don't forget to export _CC_CCMODE=1 before calling configure and make. > $ export _CC_CCMODE=1 @@ -114,7 +114,7 @@ configure and make. Test notes: Test 11 will fail if you do not have gzip installed. Test 42 will fail, as VIM on z/OS UNIX doesn't support the multibyte - feature. (David Moore: "Doesn't work _yet_! :-) I'll see what I + feature. (David Moore: "Doesn't work _yet_! :-) I'll see what I can do.") > @@ -123,8 +123,8 @@ configure and make. Building with X11: ~ -There are two ways for building Vim with X11 support. You can link it -statically with the X11 libraries or can bind it with the X11 DLLs. The +There are two ways for building Vim with X11 support. You can link it +statically with the X11 libraries or can bind it with the X11 DLLs. The statically linked version results in a huge executable (~13MB), while the dynamically linked executable is much smaller (~4.5MB). @@ -137,7 +137,7 @@ Here is what you do, if you want Motif: VIM is now linked statically with the X11 libraries. b) Dynamic link: - Make VIM as described for the static link. Then change the contents of + Make VIM as described for the static link. Then change the contents of the 'auto/link.sed' file by appending: > s%-lXm *%/usr/lib/Xm.x %g s%-lX11 *%/usr/lib/X11.x %g @@ -155,7 +155,7 @@ See the Makefile and the file link.sh on ============================================================================== 4. ASCII/EBCDIC dependent scripts *OS390-has-ebcdic* *zOS-has-ebcdic* -For the internal script language the feature "ebcdic" was added. With this +For the internal script language the feature "ebcdic" was added. With this you can fix ASCII dependent scripts like this: > if has("ebcdic") @@ -178,7 +178,7 @@ the screen with or if you can't mo the command line, try adding > :set t_le=^H < -to your .vimrc. Note: '^H' is one character, hit to get it. +to your .vimrc. Note: '^H' is one character, hit to get it. ============================================================================== 6. Motif Problems *OS390-Motif* *zOS-Motif* @@ -203,9 +203,9 @@ 7. Bugs *OS390-bugs* *zOS-Bugs* 8. Known weaknesses *OS390-weaknesses* *zOS-weaknesses* - No binary search in tag files. - The program /bin/sort sorts by ASCII value by default. This program is - normally used by ctags to sort the tags. There might be a version of - ctags out there, that does it right, but we can't be sure. So this seems to + The program /bin/sort sorts by ASCII value by default. This program is + normally used by ctags to sort the tags. There might be a version of + ctags out there, that does it right, but we can't be sure. So this seems to be a permanent restriction. - Multibyte support (utf-8) doesn't work, it's disabled at compile time. @@ -246,10 +246,10 @@ 6.1b (beta): screen corruption problems in gVim reported by Anthony Giorgio. Anthony Giorgio updated this document: - - Changed OS/390 to z/OS where appropriate. IBM decided to rename + - Changed OS/390 to z/OS where appropriate. IBM decided to rename all of its servers and operating systems. z/OS and OS/390 are the same product, but the version numbering system was - reset for the name change. (e.g. OS/390 V2R11 == z/OS V1R1) + reset for the name change (e.g. OS/390 V2R11 == z/OS V1R1). - Added information about second edition of the Open Source Redbook. - Moved Redbook information to a separate section. - Various tweaks and changes. @@ -265,16 +265,16 @@ 6.0au: 6.0q (alpha): Minor changes for nrformats=alpha (see |'nrformats'|). - Problem with hard-coded keycode for the English pound sign. Added a define in + Problem with hard-coded keycode for the English pound sign. Added a define in ascii.h Disabled multibyte for EBCDIC in feature.h 6.0f (alpha): - First compile of Vim 6 on z/OS UNIX. Some minor changes were needed. + First compile of Vim 6 on z/OS UNIX. Some minor changes were needed. Finally found the reason why make from the top level didn't work (I must have - been blind before!). The Makefile contained a list of targets in one target - line. On all other UNIX's the macro $@ evaluates to the first target in this + been blind before!). The Makefile contained a list of targets in one target + line. On all other UNIX's the macro $@ evaluates to the first target in this list, only on z/OS UNIX it evaluates to the last one :-(. 5.6-390d: @@ -282,7 +282,7 @@ 5.6-390d: 5.6-390c: I grepped through the source and examined every spot with a character - involved in a operation (+-). I hope I now found all EBCDIC/ASCII + involved in a operation (+-). I hope I now found all EBCDIC/ASCII stuff, but .... Fixed: @@ -295,7 +295,7 @@ 5.6-390c: - fixed quick-access table in findoptions() - fixed 'g^H' select mode - fixed tgetstr() 'get terminal capability string', ESC and - Ctrl chars where wrong. (Not used on OS/390 UNIX) + Ctrl chars where wrong. (Not used on OS/390 UNIX) ctags: @@ -311,13 +311,13 @@ 5.6-390b: - added special compiler and linker options if building with X11 - configure: - after created via autoconf hand-edited it to make the test for - ICEConnectionNumber work. This is a autoconf problem. OS/390 UNIX + ICEConnectionNumber work. This is a autoconf problem. OS/390 UNIX needs -lX11 for this. - Makefile - Don't include the lib directories ('-L...') into the variable - ALL_LIBS. Use own variable ALL_LIB_DIRS instead. A fully POSIX + ALL_LIBS. Use own variable ALL_LIB_DIRS instead. A fully POSIX compliant compiler must not accept objects/libraries and options - mixed. Now we can call the linker like this: + mixed. Now we can call the linker like this: $(CC) $(LDFLAGS) $(ALL_LIB_DIRS) $(OBJ) $(ALL_LIBS) diff --git a/runtime/doc/os_beos.txt b/runtime/doc/os_beos.txt --- a/runtime/doc/os_beos.txt +++ b/runtime/doc/os_beos.txt @@ -1,4 +1,4 @@ -*os_beos.txt* For Vim version 7.0aa. Last change: 2004 May 01 +*os_beos.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -31,11 +31,11 @@ 13. Compiling with Perl |beos-perl| 1. General *beos-general* The default syntax highlighting mostly works with different foreground colors -to highlight items. This works best if you set your Terminal window to a -darkish background and light letters. Some middle-grey background (for +to highlight items. This works best if you set your Terminal window to a +darkish background and light letters. Some middle-grey background (for instance (r,g,b)=(168,168,168)) with black letters also works nicely. If you use the default light background and dark letters, it may look better to -simply reverse the notion of foreground and background color settings. To do +simply reverse the notion of foreground and background color settings. To do this, add this to your .vimrc file (where may need to be replaced with the escape character): > @@ -48,7 +48,7 @@ the escape character): > 2. Compiling Vim *beos-compiling* From the Advanced Access Preview Release (AAPR) on, Vim can be configured with -the standard configure script. To get the compiler and its flags right, use +the standard configure script. To get the compiler and its flags right, use the following command-line in the shell (you can cut and paste it in one go): CC=$BE_C_COMPILER CFLAGS="$BE_DEFAULT_C_FLAGS -O7" \ @@ -60,9 +60,9 @@ When configure has run, and you wish to config.mk file so that the lines with GUI_xxx refer to $(BEOSGUI_xxx) instead of $(NONE_xxx). Alternatively you can make this change in the Makefile; it will have a -more permanent effect. Search for "NONE_". +more permanent effect. Search for "NONE_". -After compilation you need to add the resources to the binary. Add the +After compilation you need to add the resources to the binary. Add the following few lines near the end (before the line with "exit $exit_value") of the link.sh script to do this automatically. @@ -81,12 +81,12 @@ You will need it when using "make instal Now type "make" to compile Vim, then "make install" to install it. If you want to install Vim by hand, you must copy Vim to $HOME/config/bin, and -create a bunch of symlinks to it ({g,r,rg}{vim,ex,view}). Furthermore you must -copy Vims configuration files to $HOME/config/share/vim: +create a bunch of symlinks to it ({g,r,rg}{vim,ex,view}). Furthermore you must +copy Vim's configuration files to $HOME/config/share/vim: vim-5.0s/{*.vim,doc,syntax}. For completeness, you should also copy the nroff -manual pages to $HOME/config/man/man1. Don't forget ctags/ctags and xxd/xxd! +manual pages to $HOME/config/man/man1. Don't forget ctags/ctags and xxd/xxd! -Obviously, you need the unlimited linker to actually link Vim. See +Obviously, you need the unlimited linker to actually link Vim. See http://www.metrowerks.com for purchasing the CodeWarrior compiler for BeOS. There are currently no other linkers that can do the job. @@ -97,7 +97,7 @@ you have the appropriate files installed 3. Timeout in the Terminal *beos-timeout* Because some POSIX/UNIX features are still missing[1], there is no direct OS -support for read-with-timeout in the Terminal. This would meat that you cannot +support for read-with-timeout in the Terminal. This would mean that you cannot use :mappings of more than one character, unless you also :set notimeout. |'timeout'| @@ -112,16 +112,16 @@ indistinctive character sequences. These problems do not exist in the GUI. [1]: there is no select() on file descriptors; also the termios VMIN and VTIME -settings do not seem to work properly. This has been the case since DR7 at +settings do not seem to work properly. This has been the case since DR7 at least and still has not been fixed as of PR2. *beos-unicode* 4. Unicode vs. Latin1 *beos-utf8* BeOS uses Unicode and UTF-8 for text strings (16-bit characters encoded to -8-bit characters). Vim assumes ISO-Latin1 or other 8-bit character codes. -This does not produce the desired results for non-ASCII characters. Try the -command :digraphs to see. If they look messed up, use :set isprint=@ to +8-bit characters). Vim assumes ISO-Latin1 or other 8-bit character codes. +This does not produce the desired results for non-ASCII characters. Try the +command :digraphs to see. If they look messed up, use :set isprint=@ to (slightly) improve the display of ISO-Latin1 characters 128-255. This works better in the GUI, depending on which font you use (below). @@ -133,32 +133,32 @@ 5. The BeOS GUI *beos-gui* Normally Vim starts with the GUI if you start it as gvim or vim -g. The BeOS version tries to determine if it was started from the Tracker instead of the -Terminal, and if so, use the GUI anyway. However, the current detection scheme -is fooled if you use the command "vim - @@ -189,7 +189,7 @@ session, unless you use the File Types a Launch") or on the Vim window (starts editing the files). Dropping a folder sets Vim's current working directory. |:cd| |:pwd| If you drop files or folders with either SHIFT key pressed, Vim changes directory to the folder -that contains the first item dropped. When starting Vim, there is no need to +that contains the first item dropped. When starting Vim, there is no need to press shift: Vim behaves as if you do. Files dropped set the current argument list. |argument-list| @@ -198,10 +198,10 @@ Files dropped set the current argument l 8. Single Launch vs. Multiple Launch *beos-launch* As distributed Vim's Application Flags (as seen in the FileTypes preference) -are set to Multiple Launch. If you prefer, you can set them to Single Launch +are set to Multiple Launch. If you prefer, you can set them to Single Launch instead. Attempts to start a second copy of Vim will cause the first Vim to -open the files instead. This works from the Tracker but also from the command -line. In the latter case, non-file (option) arguments are not supported. +open the files instead. This works from the Tracker but also from the command +line. In the latter case, non-file (option) arguments are not supported. NB: Only the GUI version has a BApplication (and hence Application Flags). This section does not apply to the GUI-less version, should you compile one. @@ -214,16 +214,16 @@ Set fonts with > :set guifont=Courier10_BT/Roman/10 where the first part is the font family, the second part the style, and the -third part the size. You can use underscores instead of spaces in family and +third part the size. You can use underscores instead of spaces in family and style. -Best results are obtained with monospaced fonts (such as Courier). Vim +Best results are obtained with monospaced fonts (such as Courier). Vim attempts to use all fonts in B_FIXED_SPACING mode but apparently this does not work for proportional fonts (despite what the BeBook says). Vim also tries to use the B_ISO8859_1 encoding, also known as ISO Latin 1. -This also does not work for all fonts. It does work for Courier, but not for -ProFontISOLatin1/Regular (strangely enough). You can verify this by giving the > +This also does not work for all fonts. It does work for Courier, but not for +ProFontISOLatin1/Regular (strangely enough). You can verify this by giving the > :digraphs @@ -270,30 +270,30 @@ 11. Mouse key mappings *beos-mouse* Vim calls the various mouse buttons LeftMouse, MiddleMouse and RightMouse. If you use the default Mouse preference settings these names indeed correspond to -reality. Vim uses this mapping: +reality. Vim uses this mapping: Button 1 -> LeftMouse, Button 2 -> RightMouse, Button 3 -> MiddleMouse. If your mouse has fewer than 3 buttons you can provide your own mapping from -mouse clicks with modifier(s) to other mouse buttons. See the file +mouse clicks with modifier(s) to other mouse buttons. See the file vim-5.x/macros/swapmous.vim for an example. |gui-mouse-mapping| 12. Color names *beos-colors* -Vim has a number of color names built-in. Additional names are read from the -file $VIMRUNTIME/rgb.txt, if present. This file is basically the color -database from X. Names used from this file are cached for efficiency. +Vim has a number of color names built-in. Additional names are read from the +file $VIMRUNTIME/rgb.txt, if present. This file is basically the color +database from X. Names used from this file are cached for efficiency. 13. Compiling with Perl *beos-perl* -Compiling with Perl support enabled is slightly tricky. The Metrowerks -compiler has some strange ideas where to search for include files. Since +Compiling with Perl support enabled is slightly tricky. The Metrowerks +compiler has some strange ideas where to search for include files. Since several include files with Perl have the same names as some Vim header -files, the wrong ones get included. To fix this, run the following Perl +files, the wrong ones get included. To fix this, run the following Perl script while in the vim-5.0/src directory: > preproc.pl > perl.h diff --git a/runtime/doc/os_mac.txt b/runtime/doc/os_mac.txt --- a/runtime/doc/os_mac.txt +++ b/runtime/doc/os_mac.txt @@ -1,4 +1,4 @@ -*os_mac.txt* For Vim version 7.0aa. Last change: 2004 Dec 13 +*os_mac.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar et al. @@ -33,7 +33,7 @@ Indianapolis IN 46220 USA ============================================================================== 1. Filename Convention *mac-filename* -You can use either the unix or mac path separator or a mix of both. In order +You can use either the unix or mac path separator or a mix of both. In order to determine if the specified filename is relative to the current folder or absolute (i.e. relative to the "Desktop"), the following algorithm is used: @@ -59,7 +59,7 @@ You can use the |$VIM| and |$VIMRUNTIME| 2. .vimrc and .vim files *mac-vimfile* On the Mac files starting with a dot "." are discouraged, thus the rc files -are named "vimrc" or "_vimrc" and "gvimrc" or "_gvimrc". These files can be in +are named "vimrc" or "_vimrc" and "gvimrc" or "_gvimrc". These files can be in any format (mac, dos or unix). Vim can handle any file format when the |'nocompatible'| option is set, otherwise it will only handle mac format files. diff --git a/runtime/doc/os_mint.txt b/runtime/doc/os_mint.txt --- a/runtime/doc/os_mint.txt +++ b/runtime/doc/os_mint.txt @@ -1,4 +1,4 @@ -*os_mint.txt* For Vim version 7.0aa. Last change: 2001 Sep 03 +*os_mint.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Jens M. Felderhoff @@ -15,12 +15,12 @@ The Unix behavior described in the docum MiNT version of Vim unless explicitly stated otherwise. For wildcard expansion of <~> (home directory) you need a shell that -expands the tilde. The vanilla Bourne shell doesn't recognize it. +expands the tilde. The vanilla Bourne shell doesn't recognize it. With csh and ksh it should work OK. The MiNT version of vim needs the termcap file /etc/termcap with the -terminal capabilities of your terminal. Builtin termcaps are -supported for the vt52 terminal. Termcap entries for the TOSWIN window +terminal capabilities of your terminal. Builtin termcaps are +supported for the vt52 terminal. Termcap entries for the TOSWIN window manager and the virtual console terminals have been appended to the termcap file that comes with the Vim distribution. diff --git a/runtime/doc/os_msdos.txt b/runtime/doc/os_msdos.txt --- a/runtime/doc/os_msdos.txt +++ b/runtime/doc/os_msdos.txt @@ -1,4 +1,4 @@ -*os_msdos.txt* For Vim version 7.0aa. Last change: 2004 Aug 31 +*os_msdos.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -97,7 +97,7 @@ write a file, and for filter commands. problems may result. The Dos32 version cannot have an unlimited number of files open at any one -time. The limit depends on the setting of FILES in your CONFIG.SYS. This +time. The limit depends on the setting of FILES in your CONFIG.SYS. This defaults to 15; if you need to edit a lot of files, you should increase this. If you do not set FILES high enough, you can get strange errors, and shell commands may cause a crash! @@ -241,7 +241,7 @@ In other versions, the following can be How to copy/paste text from/to vim in a dos box: -1) to get VIM to run in a window, instead of full screen, press alt+enter. +1) To get VIM to run in a window, instead of full screen, press alt+enter. This toggles back and forth between full screen and a dos window. NOTE: In Windows 95 you must have the property "Fast Pasting" unchecked! In the properties dialog box for the MS-DOS window, go to "MS-DOS @@ -251,25 +251,25 @@ 1) to get VIM to run in a window, instea 2) To paste something _into_ Vim, put Vim in insert mode. -3) put the text you want to paste on the windows clipboard. +3) Put the text you want to paste on the windows clipboard. -4) Click the control box in the upper left of the Vim window. (This looks - like a big minus sign). If you don't want to use the mouse, you can get +4) Click the control box in the upper left of the Vim window. (This looks + like a big minus sign.) If you don't want to use the mouse, you can get this with alt+spacebar. -5) on the resulting dropdown menu choose "Edit" -6) on the child dropdown menu choose "Paste" +5) On the resulting dropdown menu choose "Edit". +6) On the child dropdown menu choose "Paste". To copy something from the Vim window to the clipboard, -1) select the control box to get the control drop down menu. -2) select "Edit". -3) select "Mark" -4) using either the keys or the mouse, select the part of the Vim window that - you want to copy. To use the keys, use the arrow keys, and hold down shift +1) Select the control box to get the control drop down menu. +2) Select "Edit". +3) Select "Mark". +4) Using either the keys or the mouse, select the part of the Vim window that + you want to copy. To use the keys, use the arrow keys, and hold down shift to extend the selection. -5) when you've completed your selection, press 'enter.' The selection - is now in the windows clipboard. By the way, this can be any - rectangular selection, for example columns 4-25 in rows 7-10. It can +5) When you've completed your selection, press 'enter'. The selection + is now in the windows clipboard. By the way, this can be any + rectangular selection, for example columns 4-25 in rows 7-10. It can include anything in the VIM window: the output of a :!dir, for example. diff --git a/runtime/doc/os_os2.txt b/runtime/doc/os_os2.txt --- a/runtime/doc/os_os2.txt +++ b/runtime/doc/os_os2.txt @@ -1,4 +1,4 @@ -*os_os2.txt* For Vim version 7.0aa. Last change: 2004 Jan 09 +*os_os2.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Paul Slootman @@ -28,19 +28,19 @@ that are started via a shell escape from that Vim won't be able to remove the swap file(s) associated with buffers open at the time the other program was started, until the other program is stopped. At that time, the swap file may be removed, but if Vim could not do that the -first time, it won't be removed at all. You'll get warnings that some other +first time, it won't be removed at all. You'll get warnings that some other Vim session may be editing the file when you start Vim up again on that file. -This can be reproduced with ":!start epm". Now quit Vim, and start Vim again +This can be reproduced with ":!start epm". Now quit Vim, and start Vim again with the file that was in the buffer at the time epm was started. I'm working on this! A second problem is that Vim doesn't understand the situation when using it when accessing the OS/2 system via the network, e.g. using telnet from a Unix -system, and then starting Vim. The problem seems to be that OS/2 =sometimes= +system, and then starting Vim. The problem seems to be that OS/2 =sometimes= recognizes function / cursor keys, and tries to convert those to the -corresponding OS/2 codes generated by the "normal" PC keyboard. I've been +corresponding OS/2 codes generated by the "normal" PC keyboard. I've been testing a workaround (mapping the OS/2 codes to the correct functions), but so -far I can't say anything conclusive (this is on Warp 3, by the way). In the +far I can't say anything conclusive (this is on Warp 3, by the way). In the meantime any help will be appreciated. @@ -52,12 +52,12 @@ is generally available as (ask Archie ab emxrt.zip emx runtime package I've included a copy of emx.dll, which should be copied to one of the -directories listed in your LIBPATH. Emx is GPL'ed, but the emx.dll library is +directories listed in your LIBPATH. Emx is GPL'ed, but the emx.dll library is not (read COPYING.EMX to find out what that means to you). This emx.dll is from the emxfix04.zip package, which unfortunately has a bug, eh, I mean a POSIX feature, in select(). Versions of Vim before 3.27 will -appear to hang when starting (actually, while processing vimrc). Hit a +appear to hang when starting (actually, while processing vimrc). Hit a couple of times until Vim starts working if this happens. Next, get an up to date version of Vim! @@ -84,14 +84,14 @@ you get a tree of Vim files like this: etc. Note: .vimrc may also be called _vimrc to accommodate those who have chosen to -install OS/2 on a FAT file system. Vim first tries to find .vimrc and if that +install OS/2 on a FAT file system. Vim first tries to find .vimrc and if that fails, looks for _vimrc in the same place. The existence of a .vimrc or _vimrc file influences the 'compatible' options, which can have unexpected side effects. See |'compatible'|. If you're using network drives with OS/2, then you can install Vim on a network drive (including .vimrc; this is then called the "system" vimrc file), -and then use a personal copy of .vimrc (the "user" vimrc file). This should be +and then use a personal copy of .vimrc (the "user" vimrc file). This should be located in a directory indicated by the HOME environment variable. @@ -135,14 +135,14 @@ TERMINAL SETTING *os2ansi* Use "os2ansi" as the TERM environment variable (or don't set it at all, as the -default is the correct value). You can set term to os2ansi in the .vimrc, in +default is the correct value). You can set term to os2ansi in the .vimrc, in case you need TERM to be a different value for other applications. The problem is that OS/2 ANSI emulation is quite limited (it doesn't have insert / delete line, for example). If you want to use a different value for TERM (because of other programs, for example), make sure that the termcap entry for that TERM value has the -appropriate key mappings. The termcap.dat distributed with emx does not always +appropriate key mappings. The termcap.dat distributed with emx does not always have them. Here are some suitable values to add to the termcap entry of your choice; these allow the cursor keys and the named function keys (such as pagedown) to work. @@ -214,7 +214,7 @@ clipboard you would use: > endif This will ensure that only on OS/2 clipbrd is called whereas on other -platforms vims build in mechanism is used. (To enable this functions on every +platforms vims build in mechanism is used. (To enable this functions on every load of Vim place the above lines in your .vimrc.) vim:tw=78:ts=8:ft=help:norl: diff --git a/runtime/doc/os_qnx.txt b/runtime/doc/os_qnx.txt --- a/runtime/doc/os_qnx.txt +++ b/runtime/doc/os_qnx.txt @@ -1,4 +1,4 @@ -*os_qnx.txt* For Vim version 7.0aa. Last change: 2004 Apr 23 +*os_qnx.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Julian Kinraid @@ -22,7 +22,7 @@ Vim on QNX behaves much like other unix 2. Compiling Vim *qnx-compiling* -Vim can be compiled using the standard configure/make approach. If you want to +Vim can be compiled using the standard configure/make approach. If you want to compile for X11, pass the --with-x option to configure. Otherwise, running ./configure without any arguments or passing --enable-gui=photon, will compile vim with the Photon gui support. Run ./configure --help , to find out other @@ -118,12 +118,12 @@ Known problems: set noguipty Bugs: - - Still a slight problem with menu highlighting + - Still a slight problem with menu highlighting. - When using phditto/phinows/etc., if you are using a font that doesn't support the bold attribute, when vim attempts to draw bold text it will be all messed up. - The cursor can sometimes be hard to see. - - A number of minor problems that can fixed :) + - A number of minor problems that can fixed. :) Todo: - Improve multi-language support. diff --git a/runtime/doc/os_risc.txt b/runtime/doc/os_risc.txt --- a/runtime/doc/os_risc.txt +++ b/runtime/doc/os_risc.txt @@ -1,4 +1,4 @@ -*os_risc.txt* For Vim version 7.0aa. Last change: 2004 May 01 +*os_risc.txt* For Vim version 7.0aa. Last change: 2005 Mar 29 VIM REFERENCE MANUAL by Thomas Leonard @@ -47,9 +47,9 @@ distribution, but modified slightly to w some extra files such as the window templates. User choices are read from `Choices:*' and are saved to `.*'. -If you have the new !Boot structure then these should be set up already. If +If you have the new !Boot structure then these should be set up already. If not, set Choices$Path to a list of directories to search when looking for -user configuration files. Set Choices$Write to the directory you want files +user configuration files. Set Choices$Write to the directory you want files to be saved into (so your search patterns and marks can be remembered between sessions). @@ -58,7 +58,7 @@ sessions). 2. Filename munging All pathname munging is disabled by default, so Vim should behave like a -normal RISC OS application now. So, if you want to edit `doc/html' then you +normal RISC OS application now. So, if you want to edit `doc/html' then you actually type `*vi doc/html'. The only times munging is done is when: @@ -66,7 +66,7 @@ The only times munging is done is when: - Searching included files from C programs, since these are always munged. See |[I|. Note: make sure you are in the right directory when you use this - command (ie the one with subdirectories 'c' and 'h'). + command (i.e. the one with subdirectories 'c' and 'h'). - Sourcing files using |:so|. Paths starting `$VIM/' are munged like this: @@ -88,7 +88,7 @@ To use Vim from the command-line use the Type `*vi -h' for a list of options. Running the command-line version of Vim in a large high-color mode may cause -the scrolling to be very slow. Either change to a mode with fewer colors or +the scrolling to be very slow. Either change to a mode with fewer colors or use the GUI version. Also, holding down Ctrl will slow it down even more, and Ctrl-Shift will @@ -115,7 +115,7 @@ The global clipboard is supported, so yo paste it directly into another application (provided it supports the clipboard too). -Clicking Menu now opens a menu like a normal RISC OS program. Hold down Shift +Clicking Menu now opens a menu like a normal RISC OS program. Hold down Shift when clicking Menu to paste (from the global clipboard). Dragging a file to the window replaces the CURRENT buffer (the one with the @@ -134,27 +134,27 @@ For fonts, you have the choice of the sy font via ZapRedraw and any of the Zap fonts via ZapRedraw: > :set guifont= -< To use the system font via the VDU drivers. Supports +< To use the system font via the VDU drivers. Supports bold and underline. > :set guifont=Corpus.Medium -< Use the named outline font. You can use any font, but +< Use the named outline font. You can use any font, but only monospaced ones like Corpus look right. > :set guifont=Corpus.Medium:w8:h12:b:i < As before, but with size of 8 point by 12 point, and in bold italic. If only one of width and height is given then that - value is used for both. If neither is given then 10 + value is used for both. If neither is given then 10 point is used. -Thanks to John Kortink, Vim can use the ZapRedraw module. Start the font name +Thanks to John Kortink, Vim can use the ZapRedraw module. Start the font name with '!' (or '!!' for double height), like this: > :set guifont=!! < Use the system font, but via ZapRedraw. This gives a faster redraw on StrongARM processors, but you can't - get bold or italic text. Double height. + get bold or italic text. Double height. > :set guifont=!script < Uses the named Zap font (a directory in VimFont$Path). @@ -164,12 +164,12 @@ with '!' (or '!!' for double height), li currently, but you can use any of the Zap fonts if they are in VimFont$Path. Vim will try to load font files '0', 'B', 'I' and 'IB' - from the named directory. Only '0' (normal style) MUST - be present. Link files are not currently supported. + from the named directory. Only '0' (normal style) MUST + be present. Link files are not currently supported. Note that when using ZapRedraw the edit bar is drawn in front of the character -you are on rather than behind it. Also redraw is incorrect for screen modes -with eigen values of 0. If the font includes control characters then you can +you are on rather than behind it. Also redraw is incorrect for screen modes +with eigen values of 0. If the font includes control characters then you can get Vim to display them by changing the 'isprint' option. If you find the scrolling is too slow on your machine, try experimenting @@ -199,8 +199,8 @@ 6. Temporary files If Vim crashes then the swap and backup files (if any) will be in the directories set with the 'directory' and 'bdir' options. By default the swap -files are in (ie inside !Scrap) and backups are in the -directory you were saving to. Vim will allow you to try and recover the file +files are in (i.e. inside !Scrap) and backups are in the +directory you were saving to. Vim will allow you to try and recover the file when you next try to edit it. To see a list of swap files, press and type `*vi -r'. @@ -223,13 +223,13 @@ command-line version, or press CTRL-C in *riscos-memory* 8. Memory usage -Vim will use dynamic areas on RISC OS 3.5 or later. If you can use them on -older machines then edit the !RunTxt and GVim files. I don't know what UnixLib +Vim will use dynamic areas on RISC OS 3.5 or later. If you can use them on +older machines then edit the !RunTxt and GVim files. I don't know what UnixLib does by default on these machines so I'm playing safe. It doesn't work at all well without dynamic areas, since it can't change its -memory allocation once running. Hence you should edit `!Vim.GVim' and -`!Vim.!RunTxt' to choose the best size for you. You probably need at least +memory allocation once running. Hence you should edit `!Vim.GVim' and +`!Vim.!RunTxt' to choose the best size for you. You probably need at least about 1400K. ============================================================================== @@ -237,11 +237,11 @@ about 1400K. 9. Filetypes You can now specify that autocommands are only executed for files of certain -types. The filetype is given in the form &xxx, when xxx is the filetype. +types. The filetype is given in the form &xxx, when xxx is the filetype. -Filetypes must be specified by number (eg &fff for Text). +Filetypes must be specified by number (e.g. &fff for Text). -The system has changed from version 5.3. The new sequence of events is: +The system has changed from version 5.3. The new sequence of events is: - A file is loaded. |'osfiletype'| is set to the RISC OS filetype. - Based on the filetype and pathname, Vim will try to set |'filetype'| to the @@ -264,7 +264,7 @@ 10. The shell since many pathnames contain them. - You can prefix the command with '~', which stops any output from being - displayed. This also means that you don't have to press afterwards, + displayed. This also means that you don't have to press afterwards, and stops the screen from being redrawn. {only in the GUI version} ============================================================================== @@ -274,14 +274,14 @@ 11. Porting new releases to RISC OS Downloading everything you need: - Get the latest source distribution (see www.vim.org) -- Get the runtime environment files (eg these help files) +- Get the runtime environment files (e.g. these help files) - Get the `extra' archive (contains the RISC OS specific bits) - Get the RISC OS binary distribution (if possible) Unarchiving: -- Create a raFS disk and put the archives on it. +- Create a raFS disk and put the archives on it - Un-gzip them - Un-tar them (*tar xELf 50 archive/tar) @@ -289,9 +289,9 @@ Unarchiving: Recompiling the sources: - Create c, s, and h directories. -- Put all the header files in 'h' \ -- Put all the C files in `c' | And lose the extensions -- Put the assembler file (`swis/s') in 's' / +- Put all the header files in 'h'. \ +- Put all the C files in `c'. | And lose the extensions +- Put the assembler file (`swis/s') in 's'. / - Rename all the files in `proto' to `h', like this: raFS::VimSrc.source.proto.file/pro becomes @@ -300,9 +300,9 @@ Recompiling the sources: .pro" with _pro.h" -- Create a simple Makefile if desired and do '*make -k' - Use 'CC = gcc -DRISCOS -DUSE_GUI -O2 -x c' in the Makefile -- Save the binary as !Vim.Vim in the binary distribution +- Create a simple Makefile if desired and do '*make -k'. + Use 'CC = gcc -DRISCOS -DUSE_GUI -O2 -x c' in the Makefile. +- Save the binary as !Vim.Vim in the binary distribution. Updating the run-time environment: @@ -311,9 +311,9 @@ Updating the run-time environment: new files. - Remove files in `doc' not ending in `/txt', except for `tags'. - Lose the extensions from the files in `doc'. -- Edit the `doc.tags' file. Remove extensions from the second column: > +- Edit the `doc.tags' file. Remove extensions from the second column: > :%s/^\(.[^\t]*\t.*\)\.txt\t/\1\t/ -- Remove extensions from the syntax files. Split them into two directories +- Remove extensions from the syntax files. Split them into two directories to avoid the 77 entry limit on old ADFS filesystems. - Edit `Vim:FileType' to match `*.c.*' as well as `*/c' and so on. Add filetype checking too. diff --git a/runtime/doc/os_vms.txt b/runtime/doc/os_vms.txt --- a/runtime/doc/os_vms.txt +++ b/runtime/doc/os_vms.txt @@ -1,4 +1,4 @@ -*os_vms.txt* For Vim version 7.0aa. Last change: 2004 Jun 16 +*os_vms.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL @@ -69,32 +69,32 @@ See the file [.SRC]INSTALLVMS.TXT. 4. Problems *vms-problems* The code has been tested under Open VMS 6.2 - 7.3 on Alpha and VAX platforms -with the DECC compiler. It should work without bigger problems. -If it happened that your system does not have some include libraries you can -tune up in OS_VMS_CONF.H file. +with the DEC C compiler. It should work without bigger problems. +If your system does not have some include libraries you can tune up in +OS_VMS_CONF.H file. If you decided to build Vim with +perl, +python, etc. options, first you need -to download OpenVMS distributions of Perl and Python. Build and deploy the -libraries and change adequate lines in MAKE_VMS.MMS file. There should not be -problem from Vim side. +to download OpenVMS distributions of Perl and Python. Build and deploy the +libraries and change adequate lines in MAKE_VMS.MMS file. There should not be +a problem from Vim side. -Note: Under VAX it should work with DEC C compiler without problem. VAXC -compiler is not fully ANSI C compatible in pre-processor directives -semantics, therefore you have to use a converter program what will do the -lion part of the job. For detailed instruction read file INSTALLvms.txt +Note: Under VAX it should work with the DEC C compiler without problems. The +VAX C compiler is not fully ANSI C compatible in pre-processor directives +semantics, therefore you have to use a converter program what will do the lion +part of the job. For detailed instructions read file INSTALLvms.txt -MMS_VIM.EXE is building together with VIM.EXE, but for XD.EXE you should +MMS_VIM.EXE is build together with VIM.EXE, but for XD.EXE you should change to subdirectory and build it separately. -CTAGS is not part of Vim source distribution any more, however the OpenVMS -specific source might contain CTAGS source files as it is described above. +CTAGS is not part of the Vim source distribution anymore, however the OpenVMS +specific source might contain CTAGS source files as described above. You can find more information about CTAGS on VMS at http://www.polarhome.com/ctags/ Advanced users may try some acrobatics in FEATURE.H file also. It is possible to compile with +xfontset +xim options too, but then you have -to set up GUI fonts etc. correctly. See. :help xim from Vim command prompt. +to set up GUI fonts etc. correctly. See :help xim from Vim command prompt. You may want to use GUI with GTK icons, then you have to download and install GTK for OpenVMS or at least runtime shareable images - LIBGTK from @@ -132,18 +132,18 @@ Use: > define/nolog TMP device:[path.tmp] to get vim.exe to find its document, filetype, and syntax files, and to -specify a directory where temporary files will be located. Copy the "runtime" +specify a directory where temporary files will be located. Copy the "runtime" subdirectory of the vim distribution to vimruntime. Logicals $VIMRUNTIME and $TMP are optional. If $VIMRUNTIME is not set, Vim will guess and try to set up automatically. -Read more about at :help runtime +Read more about it at :help runtime If $TMP is not set, you will not be able to use some functions as CTAGS, XXD, printing etc. that use temporary directory for normal operation. -$TMP directory should be readable and writable by the user(s). -The easiest way to set up $TMP is to define logical: > +The $TMP directory should be readable and writable by the user(s). +The easiest way to set up $TMP is to define a logical: > define/nolog TMP SYS$SCRATCH or as: > @@ -155,9 +155,9 @@ 6. Practical usage *vms-usage* Usually, you want to run just one version of Vim on your system, therefore it is enough to dedicate one directory for Vim. -Copy all Vim runtime directory structure to the deployment position. +Copy the whole Vim runtime directory structure to the deployment position. Add the following lines to your LOGIN.COM (in SYS$LOGIN directory). -Set up logical $VIM as: > +Set up the logical $VIM as: > $ define VIM device: @@ -174,20 +174,20 @@ Please, check the notes for customizatio You may want to create .vimrc and .gvimrc files in your home directory (SYS$LOGIN) to overwrite default settings. -The easiest way is just rename example files. You may leave the menu file -(MENU.VIM) and files vimrc and gvimrc in the original $VIM directory. It will -be default setup for all users, and for users is enough just to have their -own additions or resetting in home directory in files .vimrc and .gvimrc. +The easiest way is just rename example files. You may leave the menu file +(MENU.VIM) and files vimrc and gvimrc in the original $VIM directory. It will +be default setup for all users, and for users it is enough just to have their +own additions or resetting in their home directory in files .vimrc and .gvimrc. It should work without problems. -Note: Remember, system rc files (default for all users) does not have leading -"." So, system rc files are: > +Note: Remember, system rc files (default for all users) don't have a leading +".". So, system rc files are: > $VIM:vimrc $VIM:gvimrc $VIM:menu.vim -and user's customized rc files are: > +and user customized rc files are: > sys$login:.vimrc sys$login:.gvimrc @@ -203,7 +203,7 @@ Example LOGIN.COM: > Note: This set-up should be enough, if you are working on standalone server or clustered environment, but if you want to use Vim as internode editor in -DECNET environment, it will satisfy you as well. +DECNET environment, it will satisfy as well. You just have to define the "whole" path: > $ define VIM "[""user password""]::device:" @@ -214,10 +214,11 @@ as for example: > $ define VIM "PLUTO::RF10:[UTIL.VIM]" $ define VIM "PLUTO""ZAY mypass""::RF10:[UTIL.VIM]" ! if passwd required -You can also use $VIMRUNTIME logical to point to proper version of Vim if you -have installed more versions in the same time. If $VIMRUNTIME is not defined -Vim will borrow value from $VIM logical. You can find more information about -$VIMRUNTIME logical by typing :help runtime as a Vim command. +You can also use the $VIMRUNTIME logical to point to the proper version of Vim +if you have installed more versions at the same time. If $VIMRUNTIME is not +defined Vim will borrow its value from the $VIM logical. You can find more +information about the $VIMRUNTIME logical by typing :help runtime as a Vim +command. System administrators might want to set up a system wide Vim installation, then add to the SYS$STARTUP:SYLOGICALS.COM > @@ -231,38 +232,40 @@ and to the SYS$STARTUP:SYLOGIN.COM > $ gv*im:== spawn/nowait/input=NLA0 mcr VIM:VIM.EXE -g -GEOMETRY 80x40 -It will set up normal Vim work environment for every user on the system. +It will set up a normal Vim work environment for every user on the system. ============================================================================== 7. GUI mode questions *vms-gui* -OpenVMS in a real mainframe OS, therefore even if it has a GUI console, most of -the users does not use a native X/Window environment during normal operation. -It is not possible to start Vim in GUI mode "just like that". But anyhow it is -not too complicate either. +OpenVMS is a real mainframe OS, therefore even if it has a GUI console, most +of the users do not use a native X/Window environment during normal operation. +It is not possible to start Vim in GUI mode "just like that". But anyhow it +is not too complicated either. -First of all: you will need an executable that is built with enabled GUI. +First of all: you will need an executable that is built with the GUI enabled. Second: you need to have installed DECW/Motif on your VMS server, otherwise you will get errors that some shareable libraries are missing. -Third: If you choose to run Vim with extra feature as GUI/GTK then you need -GTK installation too or at least GTK runtime environment (LIBGTK etc.) +Third: If you choose to run Vim with extra features such as GUI/GTK then you +need a GTK installation too or at least a GTK runtime environment (LIBGTK +etc.). 1) If you are working on the VMS X/Motif console: Start Vim with the command: > $ mc device:VIM.EXE -g < - or type :gui as a command to the Vim command prompt. For more info :help gui + or type :gui as a command to the Vim command prompt. For more info :help + gui -2) If you are working on other X/Window environment as Unix or some remote X - VMS console. Set up display to your host with: > +2) If you are working on some other X/Window environment like Unix or a remote + X VMS console. Set up display to your host with: > $ set disp/create/node=/trans= < - and start Vim as in point 1. You can find more help in VMS documentation or + and start Vim as in point 1. You can find more help in VMS documentation or type: help set disp in VMS prompt. Examples: > @@ -276,11 +279,11 @@ For more information type $help set disp 3) Another elegant solution is XDM if you have installed on OpenVMS box. It is possible to work from XDM client as from GUI console. -4) If you are working on MS Windows or other non X/Window environment - You need to set up one X server and run Vim as in point 2. - For MS Windows there are available free X servers as MIX , Omni X etc. +4) If you are working on MS-Windows or some other non X/Window environment + you need to set up one X server and run Vim as in point 2. + For MS-Windows there are available free X servers as MIX , Omni X etc., as well as excellent commercial products as eXcursion or ReflectionX with - built in DEC support. + built-in DEC support. Please note, that executables without GUI are slightly faster during startup then with enabled GUI in character mode. Therefore, if you do not use GUI @@ -319,7 +322,7 @@ Read more in ch: 8.6 (Terminal problems) 8.2 Filters -Vim supports filters; ie. if you have a sort program that can handle +Vim supports filters, i.e., if you have a sort program that can handle input/output redirection like Unix (outfile), you could use > :map \s 0!'aqsort @@ -333,19 +336,20 @@ Vim is saving files into a new file with number, try these settings. > :set nobackup " does not create *.*_ backup files - :set nowritebackup " does not have any purpose on VMS. It's default. + :set nowritebackup " does not have any purpose on VMS. It's the + " default. Recovery is working perfect as well from the default swap file. Read more with :help swapfile (Claude Marinier Vim 5.5, Zoltan Arpadffy -Vim 5.6 ) +Vim 5.6) 8.4 Directory conversion Vim will internally convert any unix-style paths and even mixed unix/VMS -paths into VMS style paths. Some typical conversions resemble: +paths into VMS style paths. Some typical conversions resemble: /abc/def/ghi -> abc:[def]ghi. /abc/def/ghi.j -> abc:[def]ghi.j @@ -377,9 +381,9 @@ example: > Note: syntax is very important, otherwise VMS will recognize more parameters instead of one (resulting with: file not found) -2. Set up Vim as your internode editor. If Vim is not installed on your host, -just set up your IP address, full Vim path including the server name and run -the command procedure below: > +2. Set up Vim as your internode editor. If Vim is not installed on your +host, just set up your IP address, the full Vim path including the server name +and run the command procedure below: > $ if (p1 .eqs. "") .OR. (p2 .eqs. "") then goto usage $ set disp/create/node=/trans=tcpip @@ -392,8 +396,8 @@ the command procedure below: > $ write sys$output " Example: @SETVIM.COM username passwd" $ end: -Note: Never use it in clustered environment (you do not need it), and load could -be very-very slow, but even faster then a local Emacs. :-) +Note: Never use it in a clustered environment (you do not need it), loading +could be very-very slow, but even faster then a local Emacs. :-) (Zoltan Arpadffy, Vim 5.6) @@ -404,7 +408,7 @@ If your terminal name is not known to Vi one you will get the following message during start-up: --- Terminal entry not found in termcap -'unknown-terminal' not known. Available built-in terminals are: +'unknown-terminal' not known. Available built-in terminals are: builtin_gui builtin_riscos builtin_amiga @@ -422,13 +426,13 @@ defaulting to 'vt320' --- The solution is to define default terminal name: > - $ ! unknown terminal name. let us use vt320 or ansi instead. + $ ! unknown terminal name. Let us use vt320 or ansi instead. $ ! Note: it's case sensitive $ define term "vt320" Terminals from VT100 to VT320 (as V300, VT220, VT200 ) do not need any extra -keyboard mappings. They should work perfect as they are, including arrows, -Ins, Del buttons etc. Except Backspace in GUI mode. To solve it, add to +keyboard mappings. They should work perfect as they are, including arrows, +Ins, Del buttons etc., except Backspace in GUI mode. To solve it, add to .gvimrc: > inoremap @@ -457,9 +461,9 @@ special commands to execute executables: MCR filename OpenVMS users always have to be aware that the Vim command :! "just" drop them -to DCL prompt. This feature is possible to use without any problem with all +to DCL prompt. This feature is possible to use without any problem with all DCL commands, but if we want to execute some program as XXD, CTAGS, JTAGS etc. -we're running into trouble if we following the Vim documentation (see: help +we're running into trouble if we follow the Vim documentation (see: help xxd). Solution: Execute with the MC command and add the full path to the executable. @@ -470,9 +474,9 @@ Example: Instead of :%!xxd command use: ... or in general: > :!mc filename -Note: You can use XXD, and CTAGS from GUI menu. +Note: You can use XXD and CTAGS from GUI menu. -To customize ctags it is possible to define logical $CTAGS with standard +To customize ctags it is possible to define the logical $CTAGS with standard parameters as: > define/nolog CTAGS "--totals -o sys$login:tags" @@ -488,7 +492,7 @@ 8.8 Sourcing vimrc and gvimrc If you want to use your .vimrc and .gvimrc from other platforms (e.g. Windows) you can get in trouble if you ftp that file(s): VMS has different end-of-line indication. -The symptom is that ViM is not sourcing your .vimrc/.gvimrc, even if you say: +The symptom is that Vim is not sourcing your .vimrc/.gvimrc, even if you say: > :so sys$login:.vimrc @@ -535,8 +539,8 @@ 8.11 diff and other GNU programs From 6.0 diff functionality has been implemented, but OpenVMS does not use GNU/Unix like diff therefore built in diff does not work. -There is a simple solution to solve this anomaly. Install an Unix like diff -and Vim will work perfect in diff mode too. You just have to redefine your +There is a simple solution to solve this anomaly. Install a Unix like diff +and Vim will work perfect in diff mode too. You just have to redefine your diff program as: > define /nolog diff diff.exe @@ -551,16 +555,16 @@ boxes that is meant to solve GNU problem 8.12 diff-mode Vim 6.0 and higher supports vim diff-mode (See |new-diff-mode|, |diff-mode| -and |08.7|). This uses the external program 'diff' and expects a Unix-like -output format from diff. The standard VMS diff has a different output -format. To use vim on VMS in diff-mode, you need to: +and |08.7|). This uses the external program 'diff' and expects a Unix-like +output format from diff. The standard VMS diff has a different output +format. To use vim on VMS in diff-mode, you need to: 1 Install a Unix-like diff program, e.g. GNU diff 2 Tell vim to use the Unix-like diff for diff-mode. You can download GNU diff from the VIM-VMS website, it is one of the GNU -tools in http://www.polarhome.com/vim/files/gnu_tools.zip. I suggest to +tools in http://www.polarhome.com/vim/files/gnu_tools.zip. I suggest to unpack it in a separate directory "GNU" and create a logical GNU: that -points to that directory. e.g: > +points to that directory, e.g: > DEFINE GNU :[.BIN.GNU] @@ -569,9 +573,9 @@ prompt: > GDIFF :== $GNU:DIFF.EXE -Now you need to tell vim to use the new diff program. Take the example +Now you need to tell vim to use the new diff program. Take the example settings from |diff-diffexpr| and change the call to the external diff -program to the new diff on VMS. Add this to your .vimrc file: > +program to the new diff on VMS. Add this to your .vimrc file: > " Set up vimdiff options if v:version >= 600 @@ -612,8 +616,8 @@ You can now compare files in 4 ways: > 8.13 Allow '$' in C keywords -DEC C uses many identifiers with '$' in them. This is not allowed in ANSI C, -and vim recognises the '$' as the end of the identifier. You can change this +DEC C uses many identifiers with '$' in them. This is not allowed in ANSI C, +and vim recognises the '$' as the end of the identifier. You can change this with the |iskeyword|command. Add this command to your .vimrc file: > @@ -625,7 +629,7 @@ CS.VIM) and add this command: > set iskeyword+=$ Now word-based commands, e.g. the '*'-search-command and the CTRL-] -tag-lookup, work on the whole identifier. (Ctags on VMS also supports '$' in +tag-lookup, work on the whole identifier. (Ctags on VMS also supports '$' in C keywords since ctags version 5.1.) ( Coen Engelbarts, Vim 6.1) @@ -633,8 +637,8 @@ C keywords since ctags version 5.1.) 8.14 VIMTUTOR for beginners It exits VIMTUTOR.COM DCL script that can help Vim beginners to learn/make -first steps with Vim on OpenVMS. Depending of binary distribution you may start -it with: > +first steps with Vim on OpenVMS. Depending of binary distribution you may +start it with: > @vim:vimtutor diff --git a/runtime/doc/pi_netrw.txt b/runtime/doc/pi_netrw.txt --- a/runtime/doc/pi_netrw.txt +++ b/runtime/doc/pi_netrw.txt @@ -177,16 +177,16 @@ by setting a variable (ex. scp uses the which is defaulted to "scp -q"). Ftp, an old protocol, seems to be blessed by numerous implementations. -Unfortunately, some implementations are noisy (ie., add junk to the end +Unfortunately, some implementations are noisy (i.e., add junk to the end of the file). Thus, concerned users may decide to write a NetReadFixup() function that will clean up after reading with their ftp. Some Unix systems -(ie., FreeBSD) provide a utility called "fetch" which uses the ftp protocol +(i.e., FreeBSD) provide a utility called "fetch" which uses the ftp protocol but is not noisy and more convenient, actually, for to use. Consequently, if "fetch" is executable, it will be used to do reads for ftp://... (and http://...) . See |netrw-var| for more about this. For rcp, scp, sftp, and http, one may use network-oriented file transfers -transparently; ie. +transparently; i.e. > vim rcp://[user@]machine/path vim scp://[user@]machine/path @@ -198,7 +198,7 @@ that file. Your ftp must be able to use vim ftp://[user@]machine[[:#]portnumber]/path < However, ftp will often need to query the user for the userid and password. -The latter will be done "silently"; ie. asterisks will show up instead of +The latter will be done "silently"; i.e. asterisks will show up instead of the actually-typed-in password. Netrw will retain the userid and password for subsequent read/writes from the most recent transfer so subsequent transfers (read/write) to or from that machine will take place without @@ -625,7 +625,7 @@ NETRW BROWSER VARIABLES *netrw-brows g:netrw_timefmt specify format string to strftime() (%c) g:netrw_winsize specify initial size of new o/v windows -INTRODUCTION TO DIRECTORY BROWSING +INTRODUCTION TO DIRECTORY BROWSING *file-explorer* Netrw supports the browsing of directories on the local system and on remote hosts, including generating listing directories, entering directories, editing diff --git a/runtime/doc/print.txt b/runtime/doc/print.txt --- a/runtime/doc/print.txt +++ b/runtime/doc/print.txt @@ -1,4 +1,4 @@ -*print.txt* For Vim version 7.0aa. Last change: 2004 Jul 05 +*print.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -32,7 +32,7 @@ used. printer. On MS-Windows a dialog is displayed to allow selection - of printer, paper size etc. To skip the dialog, use + of printer, paper size etc. To skip the dialog, use the [!]. In this case the printer defined by 'printdevice' is used, or, if 'printdevice' is empty, the system default printer. @@ -65,7 +65,7 @@ the current window's 'wrap' or 'linebrea 'printoptions' can be used to switch wrapping off. The current highlighting colors are used in the printout, with the following considerations: -1) The normal background is always rendered as white (i.e. blank paper.) +1) The normal background is always rendered as white (i.e. blank paper). 2) White text or the default foreground is rendered as black, so that it shows up! 3) If 'background' is "dark", then the colours are darkened to compensate for diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt --- a/runtime/doc/quickref.txt +++ b/runtime/doc/quickref.txt @@ -1,4 +1,4 @@ -*quickref.txt* For Vim version 7.0aa. Last change: 2005 Mar 07 +*quickref.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1171,7 +1171,7 @@ Context-sensitive completion on the comm |:xall| :xa[ll][!] or :wqall[!] Write all changed buffers and exit -|:stop| :st[op][!] Suspend VIM or start new shell. If 'aw' option +|:stop| :st[op][!] Suspend VIM or start new shell. If 'aw' option is set and [!] not given write the buffer. |CTRL-Z| CTRL-Z Same as ":stop" ------------------------------------------------------------------------------ diff --git a/runtime/doc/rileft.txt b/runtime/doc/rileft.txt --- a/runtime/doc/rileft.txt +++ b/runtime/doc/rileft.txt @@ -1,4 +1,4 @@ -*rileft.txt* For Vim version 7.0aa. Last change: 2003 May 07 +*rileft.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Avner Lottem @@ -36,7 +36,7 @@ bidi and is merely opting to present a f right-to-left languages. An older hybrid solution in which direction is encoded for every character (or group of characters) are not supported either as this kind of support is out of the scope of a simple addition to an -existing editor (and its not sanctioned by Unicode either). +existing editor (and it's not sanctioned by Unicode either). Highlights diff --git a/runtime/doc/russian.txt b/runtime/doc/russian.txt --- a/runtime/doc/russian.txt +++ b/runtime/doc/russian.txt @@ -1,4 +1,4 @@ -*russian.txt* For Vim version 7.0aa. Last change: 2004 Dec 22 +*russian.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Vassily Ragosin @@ -14,7 +14,7 @@ 4. Known issues |russian-issues| =============================================================================== 1. Introduction *russian-intro* -Russian language is supported perfectly well in Vim. You can type and view +Russian language is supported perfectly well in Vim. You can type and view Russian text just as any other, without the need to tweak the settings. =============================================================================== @@ -28,8 +28,8 @@ example, < In the latter case, you can switch between languages even if you do not have system Russian keyboard or independently from a system-wide keyboard settings. -See 'keymap'. You can also map a key to switch between keyboards, if you -choose the latter option. See |:map|. +See 'keymap'. You can also map a key to switch between keyboards, if you +choose the latter option. See |:map|. For your convenience, to avoid switching between keyboards, when you need to enter Normal mode command, you can also set 'langmap' option: @@ -51,11 +51,11 @@ different codepages from http://www.sourceforge.net/projects/ruvim/ Make sure that your Vim is at least 6.2.506 and use ruvim 0.5 or later for -automatic installs. Vim also needs to be compiled with |+gettext| feature for +automatic installs. Vim also needs to be compiled with |+gettext| feature for user interface items translations to work. After downloading an archive from RuVim project, unpack it into your -$VIMRUNTIME directory. We recommend using UTF-8 archive, if your version of +$VIMRUNTIME directory. We recommend using UTF-8 archive, if your version of Vim is compiled with |+multi_byte| feature enabled. In order to use the Russian documentation, make sure you have set the @@ -66,7 +66,7 @@ 4. Known issues *russian-iss -- If you are using Russian message translations in Win32 console, then you may see the output produced by "vim --help", "vim --version" commands - and Win32 console window title appearing in a wrong codepage. This problem + and Win32 console window title appearing in a wrong codepage. This problem is related to a bug in GNU gettext library and may be fixed in the future releases of gettext. diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt --- a/runtime/doc/sign.txt +++ b/runtime/doc/sign.txt @@ -1,4 +1,4 @@ -*sign.txt* For Vim version 7.0aa. Last change: 2004 May 22 +*sign.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Gordon Prieur @@ -18,19 +18,19 @@ 1. Introduction *sign-intro* *signs* When a debugger or other IDE tool is driving an editor it needs to be able to give specific highlights which quickly tell the user useful information -about the file. One example of this would be a debugger which had an icon -in the left-hand column denoting a breakpoint. Another example might be an -arrow representing the Program Counter (PC). The sign features allow both +about the file. One example of this would be a debugger which had an icon +in the left-hand column denoting a breakpoint. Another example might be an +arrow representing the Program Counter (PC). The sign features allow both placement of a sign, or icon, in the left-hand side of the window and -definition of a highlight which will be applied to that line. Displaying the +definition of a highlight which will be applied to that line. Displaying the sign as an image is most likely only feasible in gvim (although Sun -Microsystem's dtterm does support this its the only terminal emulator I know +Microsystem's dtterm does support this it's the only terminal emulator I know of which does). A text sign and the highlight should be feasible in any color terminal emulator. -Signs and highlights are not useful just for debuggers. Sun's Visual +Signs and highlights are not useful just for debuggers. Sun's Visual WorkShop uses signs and highlights to mark build errors and SourceBrowser -hits. Additionally, the debugger supports 8 to 10 different signs and +hits. Additionally, the debugger supports 8 to 10 different signs and highlight colors. |workshop| Same for Netbeans |netbeans|. There are two steps in using signs: diff --git a/runtime/doc/tags b/runtime/doc/tags --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -1584,6 +1584,7 @@ 45.2 usr_45.txt /*45.2* 45.3 usr_45.txt /*45.3* 45.4 usr_45.txt /*45.4* 45.5 usr_45.txt /*45.5* +755 spell.txt /*755* 90.1 usr_90.txt /*90.1* 90.2 usr_90.txt /*90.2* 90.3 usr_90.txt /*90.3* @@ -2129,6 +2130,8 @@ 90.5 usr_90.txt /*90.5* :mkexrc starting.txt /*:mkexrc* :mks starting.txt /*:mks* :mksession starting.txt /*:mksession* +:mksp spell.txt /*:mksp* +:mkspell spell.txt /*:mkspell* :mkv starting.txt /*:mkv* :mkvie starting.txt /*:mkvie* :mkview starting.txt /*:mkview* @@ -3688,10 +3691,12 @@ E748 repeat.txt /*E748* E749 eval.txt /*E749* E75 vi_diff.txt /*E75* E750 repeat.txt /*E750* -E751 spell.txt /*E751* -E752 spell.txt /*E752* -E753 spell.txt /*E753* +E754 spell.txt /*E754* +E756 spell.txt /*E756* +E758 spell.txt /*E758* +E759 spell.txt /*E759* E76 pattern.txt /*E76* +E760 spell.txt /*E760* E77 message.txt /*E77* E78 motion.txt /*E78* E79 message.txt /*E79* @@ -3998,6 +4003,7 @@ ZZ editing.txt /*ZZ* [pattern] pattern.txt /*[pattern]* [quotex] intro.txt /*[quotex]* [range] cmdline.txt /*[range]* +[s spell.txt /*[s* [star motion.txt /*[star* [z fold.txt /*[z* [{ motion.txt /*[{* @@ -4023,6 +4029,7 @@ ZZ editing.txt /*ZZ* ]i tagsrch.txt /*]i* ]m motion.txt /*]m* ]p change.txt /*]p* +]s spell.txt /*]s* ]star motion.txt /*]star* ]z fold.txt /*]z* ]} motion.txt /*]}* @@ -4579,6 +4586,7 @@ design-not develop.txt /*design-not* design-speed-size develop.txt /*design-speed-size* desktop-syntax syntax.txt /*desktop-syntax* desktop.vim syntax.txt /*desktop.vim* +develop-spell develop.txt /*develop-spell* develop.txt develop.txt /*develop.txt* development develop.txt /*development* dh change.txt /*dh* @@ -4808,6 +4816,7 @@ fcs_reason-variable eval.txt /*fcs_reaso feature-list eval.txt /*feature-list* fetch pi_netrw.txt /*fetch* file-browser-5.2 version5.txt /*file-browser-5.2* +file-explorer pi_netrw.txt /*file-explorer* file-formats editing.txt /*file-formats* file-pattern autocmd.txt /*file-pattern* file-read insert.txt /*file-read* @@ -6219,8 +6228,12 @@ spec_chglog_release_info pi_spec.txt /*s special-buffers windows.txt /*special-buffers* speed-up tips.txt /*speed-up* spell spell.txt /*spell* +spell-affix-mbyte spell.txt /*spell-affix-mbyte* +spell-affix-vim spell.txt /*spell-affix-vim* spell-file-format spell.txt /*spell-file-format* +spell-mkspell spell.txt /*spell-mkspell* spell-quickstart spell.txt /*spell-quickstart* +spell-wordlist-format spell.txt /*spell-wordlist-format* spell.txt spell.txt /*spell.txt* split() eval.txt /*split()* splitfind windows.txt /*splitfind* diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt --- a/runtime/doc/tips.txt +++ b/runtime/doc/tips.txt @@ -1,4 +1,4 @@ -*tips.txt* For Vim version 7.0aa. Last change: 2005 Feb 23 +*tips.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -129,26 +129,26 @@ Switching screens in an xterm *xterm-sc :the same thing as each other for a given xterm setup. They not necessarily do the same thing, as this may be a termcap vs. -terminfo problem. You should be aware that there are two databases for +terminfo problem. You should be aware that there are two databases for describing attributes of a particular type of terminal: termcap and -terminfo. This can cause differences when the entries differ AND when of +terminfo. This can cause differences when the entries differ AND when of the programs in question one uses terminfo and the other uses termcap (also see |+terminfo|). In your particular problem, you are looking for the control sequences -^[[?47h and ^[[?47l. These switch between xterms alternate and main screen -buffer. As a quick workaround a command sequence like > +^[[?47h and ^[[?47l. These switch between xterms alternate and main screen +buffer. As a quick workaround a command sequence like > echo -n "^[[?47h"; vim ... ; echo -n "^[[?47l" -may do what you want. (My notation ^[ means the ESC character, further down +may do what you want. (My notation ^[ means the ESC character, further down you'll see that the databases use \E instead). On startup, vim echoes the value of the termcap variable ti (terminfo: -smcup) to the terminal. When exiting, it echoes te (terminfo: rmcup). Thus +smcup) to the terminal. When exiting, it echoes te (terminfo: rmcup). Thus these two variables are the correct place where the above mentioned control sequences should go. Compare your xterm termcap entry (found in /etc/termcap) with your xterm -terminfo entry (retrieved with /usr/5bin/infocmp -C xterm). Both should +terminfo entry (retrieved with /usr/5bin/infocmp -C xterm). Both should contain entries similar to: > :te=\E[2J\E[?47l\E8:ti=\E7\E[?47h: @@ -339,7 +339,7 @@ be able to give comments to the parts of (<> notation |<>|. Note that this is all typed literally. ^W is "^" "W", not CTRL-W. You can copy/paste this into Vim if '<' is not included in -'cpoptions') +'cpoptions'.) Note that the last comment starts with |", because the ":execute" command doesn't accept a comment directly. diff --git a/runtime/doc/usr_02.txt b/runtime/doc/usr_02.txt --- a/runtime/doc/usr_02.txt +++ b/runtime/doc/usr_02.txt @@ -1,4 +1,4 @@ -*usr_02.txt* For Vim version 7.0aa. Last change: 2004 Jun 08 +*usr_02.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -425,7 +425,7 @@ the editor: "ZZ". This will only close As you read the help text, you will notice some text enclosed in vertical bars (for example, |help|). This indicates a hyperlink. If you position the cursor anywhere between the bars and press CTRL-] (jump to tag), the help -system takes you to the indicated subject. (For reasons not discussed here, +system takes you to the indicated subject. (For reasons not discussed here, the Vim terminology for a hyperlink is tag. So CTRL-] jumps to the location of the tag given by the word under the cursor.) After a few jumps, you might want to go back. CTRL-T (pop tag) takes you @@ -484,7 +484,7 @@ example, use the following command: > The table with all mode prefixes can be found here: |help-context|. -Special keys are enclosed in angle brackets. To find help on the up-arrow key +Special keys are enclosed in angle brackets. To find help on the up-arrow key in Insert mode, for instance, use this command: > :help i_ diff --git a/runtime/doc/usr_03.txt b/runtime/doc/usr_03.txt --- a/runtime/doc/usr_03.txt +++ b/runtime/doc/usr_03.txt @@ -1,4 +1,4 @@ -*usr_03.txt* For Vim version 7.0aa. Last change: 2005 Feb 08 +*usr_03.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -332,7 +332,7 @@ the and cursor keys when Pressing executes the command. Note: - The characters .*[]^%/\?~$ have special meaning. If you want to use + The characters .*[]^%/\?~$ have special meanings. If you want to use them in a search you must put a \ in front of them. See below. To find the next occurrence of the same string use the "n" command. Use this diff --git a/runtime/doc/usr_08.txt b/runtime/doc/usr_08.txt --- a/runtime/doc/usr_08.txt +++ b/runtime/doc/usr_08.txt @@ -1,4 +1,4 @@ -*usr_08.txt* For Vim version 7.0aa. Last change: 2004 Jun 04 +*usr_08.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -52,7 +52,7 @@ the bottom one the code that uses these The CTRL-W w command can be used to jump between the windows. If you are in the top window, CTRL-W w jumps to the window below it. If you are in the -bottom window it will jump to the first window. (CTRL-W CTRL-W does the same +bottom window it will jump to the first window. (CTRL-W CTRL-W does the same thing, in case you let go of the CTRL key a bit later.) diff --git a/runtime/doc/usr_09.txt b/runtime/doc/usr_09.txt --- a/runtime/doc/usr_09.txt +++ b/runtime/doc/usr_09.txt @@ -1,4 +1,4 @@ -*usr_09.txt* For Vim version 7.0aa. Last change: 2001 Sep 03 +*usr_09.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -129,7 +129,7 @@ select text in a standard manner. The X system for using the mouse. Unfortunately, these two standards are not the same. Fortunately, you can customize Vim. You can make the behavior of the mouse -work like an X Window system mouse or a Microsoft Windows mouse. The following +work like an X Window system mouse or a Microsoft Windows mouse. The following command makes the mouse behave like an X Window mouse: > :behave xterm diff --git a/runtime/doc/usr_10.txt b/runtime/doc/usr_10.txt --- a/runtime/doc/usr_10.txt +++ b/runtime/doc/usr_10.txt @@ -1,4 +1,4 @@ -*usr_10.txt* For Vim version 7.0aa. Last change: 2005 Mar 15 +*usr_10.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -700,7 +700,7 @@ as input. The output of this command th Because this summarizes badly if you are unfamiliar with UNIX filters, take a look at an example. The sort command sorts a file. If you execute the following command, the unsorted file input.txt will be sorted and written to -output.txt. (This works on both UNIX and Microsoft Windows.) > +output.txt. (This works on both UNIX and Microsoft Windows.) > sort output.txt diff --git a/runtime/doc/usr_21.txt b/runtime/doc/usr_21.txt --- a/runtime/doc/usr_21.txt +++ b/runtime/doc/usr_21.txt @@ -1,4 +1,4 @@ -*usr_21.txt* For Vim version 7.0aa. Last change: 2004 Oct 10 +*usr_21.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -120,7 +120,7 @@ looks like this: > :set viminfo='1000 The f option controls whether global marks (A-Z and 0-9) are stored. If this -option is 0, none are stored. If it is 1 or you do not specify an f option, +option is 0, none are stored. If it is 1 or you do not specify an f option, the marks are stored. You want this feature, so now you have this: > :set viminfo='1000,f1 @@ -199,7 +199,7 @@ work and pick up where you left off the your editing session and restoring it the next day. A Vim session contains all the information about what you are editing. This includes things such as the file list, window layout, global variables, -options and other information. (Exactly what is remembered is controlled by +options and other information. (Exactly what is remembered is controlled by the 'sessionoptions' option, described below.) The following command creates a session file: > diff --git a/runtime/doc/usr_22.txt b/runtime/doc/usr_22.txt --- a/runtime/doc/usr_22.txt +++ b/runtime/doc/usr_22.txt @@ -1,4 +1,4 @@ -*usr_22.txt* For Vim version 7.0aa. Last change: 2004 Jun 16 +*usr_22.txt* For Vim version 7.0aa. Last change: 2005 Apr 10 VIM USER MANUAL - by Bram Moolenaar @@ -291,7 +291,7 @@ shorter to type: > The output could look like this: 1 #h "help.txt" line 62 ~ - 2 %l+ "usr_21.txt" line 1 ~ + 2 %a+ "usr_21.txt" line 1 ~ 3 "usr_toc.txt" line 1 ~ The first column contains the buffer number. You can use this to edit the @@ -303,7 +303,7 @@ and the line number where the cursor was u Buffer is unlisted |unlisted-buffer|. % Current buffer. # Alternate buffer. - l Buffer is loaded and displayed. + a Buffer is loaded and displayed. h Buffer is loaded but hidden. = Buffer is read-only. - Buffer is not modifiable, the 'modifiable' option is off. diff --git a/runtime/doc/usr_24.txt b/runtime/doc/usr_24.txt --- a/runtime/doc/usr_24.txt +++ b/runtime/doc/usr_24.txt @@ -1,4 +1,4 @@ -*usr_24.txt* For Vim version 7.0aa. Last change: 2003 Aug 18 +*usr_24.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -104,7 +104,7 @@ Vim do that use this command: > When you now type a text like "(example)", as soon as you type the ) Vim will briefly move the cursor to the matching (, keep it there for half a second, and move back to where you were typing. - In case there is not matching (, Vim will beep. Then you know that you + In case there is no matching (, Vim will beep. Then you know that you might have forgotten the ( somewhere, or typed a ) too many. The match will also be shown for [] and {} pairs. You don't have to wait with typing the next character, as soon as Vim sees it the cursor will move diff --git a/runtime/doc/usr_25.txt b/runtime/doc/usr_25.txt --- a/runtime/doc/usr_25.txt +++ b/runtime/doc/usr_25.txt @@ -1,4 +1,4 @@ -*usr_25.txt* For Vim version 7.0aa. Last change: 2003 Jun 21 +*usr_25.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -198,7 +198,7 @@ command: > :runtime macros/justify.vim -This Vim script file defines a new visual command "_j". To justify a block of +This Vim script file defines a new visual command "_j". To justify a block of text, highlight the text in Visual mode and then execute "_j". Look in the file for more explanations. To go there, do "gf" on this name: $VIMRUNTIME/macros/justify.vim. diff --git a/runtime/doc/usr_42.txt b/runtime/doc/usr_42.txt --- a/runtime/doc/usr_42.txt +++ b/runtime/doc/usr_42.txt @@ -1,4 +1,4 @@ -*usr_42.txt* For Vim version 7.0aa. Last change: 2002 Oct 08 +*usr_42.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -109,7 +109,7 @@ Thus each name in {menu-item} has its pr SPECIAL CHARACTERS -The {menu-item} in this example is "&File.&Save:w". This brings up an +The {menu-item} in this example is "&File.&Save:w". This brings up an important point: {menu-item} must be one word. If you want to put a dot, space or tabs in the name, you either use the <> notation ( and , for instance) or use the backslash (\) escape. > diff --git a/runtime/doc/usr_44.txt b/runtime/doc/usr_44.txt --- a/runtime/doc/usr_44.txt +++ b/runtime/doc/usr_44.txt @@ -1,4 +1,4 @@ -*usr_44.txt* For Vim version 7.0aa. Last change: 2002 Oct 10 +*usr_44.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -550,7 +550,7 @@ before the top of the screen: > If it cannot figure out where it is in that space, it starts looking farther and farther back until it figures out what to do. But it looks no farther -back than 500 lines. (A large "maxlines" slows down processing. A small one +back than 500 lines. (A large "maxlines" slows down processing. A small one might cause synchronization to fail.) To make synchronizing go a bit faster, tell Vim which syntax items can be skipped. Every match and region that only needs to be used when actually diff --git a/runtime/doc/version5.txt b/runtime/doc/version5.txt --- a/runtime/doc/version5.txt +++ b/runtime/doc/version5.txt @@ -1,4 +1,4 @@ -*version5.txt* For Vim version 7.0aa. Last change: 2004 Jun 16 +*version5.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -562,11 +562,11 @@ New options *added-options* 'hlsearch' Highlight all matches with the last used search pattern. -'hkmapp' Phonetic Hebrew mapping (Ilya Dogolazky). - -'iconstring' Define the name of the icon, when not empty. (version 5.2: the +'hkmapp' Phonetic Hebrew mapping. (Ilya Dogolazky) + +'iconstring' Define the name of the icon, when not empty. (Version 5.2: the string is used literally, a newline can be used to make two - lines). + lines.) 'lazyredraw' Don't redraw the screen while executing macros, registers or other not typed commands. @@ -591,9 +591,9 @@ New options *added-options* changing the value of 'tabstop'. Makes it more easy to keep 'ts' at 8, while still getting four spaces for a . -'titlestring' String for the window title, when not empty. (version 5.2: +'titlestring' String for the window title, when not empty. (Version 5.2: this string is used literally, a newline can be used to make - two lines). + two lines.) 'verbose' Level of verbosity. Makes it possible to show which .vimrc, .exrc, .viminfo files etc. are used for initializing. Also @@ -728,7 +728,7 @@ Autocommands: - VimLeave autocommands are executed after writing the viminfo file, instead of before. |VimLeave| - Allow changing autocommands while executing them. This allows for - self-modifying autocommands. (idea from Goldberg) + self-modifying autocommands. (idea from Goldberg) - When using autocommands with two or more patterns, could not split ":if/:endif" over two lines. Now all matching autocommands are executed in one do_cmdline(). @@ -1046,7 +1046,7 @@ in the wrong line and the window to be s After ":set all&", 'lines' and 'ttytype' were still non-default, because the defaults never got set. Now the defaults for 'lines' and 'columns' are set -after detecting the window size. 'term' and 'ttytype' defaults are set when +after detecting the window size. 'term' and 'ttytype' defaults are set when detecting the terminal type. For (most) non-Unix systems, don't add file names with illegal characters when @@ -1357,7 +1357,7 @@ caused various errors and a crash. DJGPP version could not save long lines (>64000) for undo. "yw" on the last char in the file didn't work. Also fixed "6x" at the end of -the line. "6X" at the start of a line fails, but does not break a mapping. In +the line. "6X" at the start of a line fails, but does not break a mapping. In general, a movement for an operator doesn't beep or flush a mapping, but when there is nothing to operate on it beeps (this is Vi compatible). @@ -1777,7 +1777,7 @@ Added "g]" to always do ":tselect" for t Added ":tjump" and ":stjump" commands. Improved listing of ":tselect" when tag names are a bit long. -Included patches for the Macintosh version. Also for Python interface. +Included patches for the Macintosh version. Also for Python interface. (St-Amant) ":buf foo" now also restores cursor column, when the buffer was used before. @@ -2070,7 +2070,7 @@ a printable character replaces the selec - Added 'mousemodel' option: Change use of mouse buttons. - Added 'keymodel' option: tells to use shifted special keys to start a Visual or Select mode selection. -- Added ":behave". Can be used to quickly set 'selectmode', 'mousemodel' +- Added ":behave". Can be used to quickly set 'selectmode', 'mousemodel' and 'keymodel' for MS-Windows and xterm behavior. - The xterm-like selection is now called modeless selection. - Visual mode mappings and menus are used in Select mode. They automatically @@ -2150,7 +2150,7 @@ New functions *new-functions-5.2* |browse()| puts up a file requester when available. (Negri) |escape()| escapes characters in a string with a backslash. |fnamemodify()| modifies a file name. -|input()| asks the user to enter a line. (Aaron) There is a separate +|input()| asks the user to enter a line. (Aaron) There is a separate history for lines typed for the input() function. |argc()| |argv()| can be used to access the argument list. @@ -2394,7 +2394,7 @@ events. Makes cursor blinking work for Non-text in ":list" output is highlighted with NonText. -Added text objects: "i(" and "i)" as synonym for "ib". "i{" and "i}" as +Added text objects: "i(" and "i)" as synonym for "ib". "i{" and "i}" as synonym for "iB". New: "i<" and "i>", to select . All this also for "a" objects. @@ -2607,7 +2607,7 @@ Graceful handling of NULLs in drag-dropp Fullname_save(). (Negri) Win32: ":!start" to invoke a program without opening a console, swapping -screens, or waiting for completion in either console or gui version. e.g. you +screens, or waiting for completion in either console or gui version, e.g. you can type ":!start winfile". ALSO fixes "can't delete swapfile after spawning a shell" bug. (enhancement of Aaron patch) (Negri) @@ -3783,7 +3783,7 @@ Macintosh: (St-Amant) - Weak-linking of Python 1.5.1 (only on PPC). Python is supported when the library is available. - If an error is encountered when sourcing the users .vimrc, the alert box now - shows right away with the OK button defaulted. There's no more "Delete"-key + shows right away with the OK button defaulted. There's no more "Delete"-key sign at the start of each line - Better management of environment variables. Now $VIM is calculated only once, not regenerated every time it is used. @@ -4067,7 +4067,7 @@ Various XIM and multi-byte fixes: - Fix user cannot see his language while he is typing his language with off-the-spot method. (Nagano) - Fix preedit position using text/edit area (using gui.wid). (Nagano) -- remove 'fix dead key' codes. It was needed since XNFocusWindow was +- remove 'fix dead key' codes. It was needed since XNFocusWindow was "x11_window", XNFocusWindow is now gui.wid. (Nagano) - Remove some compile warnings and fix typos. (Namsh) - For status area, check the gtk+ version while Vim runs. I believe it is @@ -4783,7 +4783,7 @@ translated to "}" before the shell got i wildcards are going to be expanded. Unix: ":e /tmp/$uid" didn't work. When expanding environment variables in a -file name doesn't work, use the shell to expand the file name. ":e /tmp/$tty" +file name doesn't work, use the shell to expand the file name. ":e /tmp/$tty" still doesn't work though. "make test" didn't always work on DOS/Windows for test30, because it depended diff --git a/runtime/doc/version6.txt b/runtime/doc/version6.txt --- a/runtime/doc/version6.txt +++ b/runtime/doc/version6.txt @@ -1,4 +1,4 @@ -*version6.txt* For Vim version 7.0aa. Last change: 2005 Jan 26 +*version6.txt* For Vim version 7.0aa. Last change: 2005 Apr 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -956,7 +956,7 @@ Use "--remote" to have files be edited i Use "--remote-wait" to do the same and wait for the editing to finish. Use "--remote-send" to send commands from one Vim to another. Use "--remote-expr" to have an expression evaluated in another Vim. -Use "--serverlist" to list the currently available Vim servers. (X only) +Use "--serverlist" to list the currently available Vim servers. (X only) There are also functions to communicate between the server and the client. |remote_send()| |remote_expr()| @@ -1055,7 +1055,7 @@ window). This makes it easy to navigate - |:cwindow| takes care that there is a quickfix window only when there are recognized errors. (Dan Sharp) -- Quickfix also knows "info", next to "warning" and "error" types. "%I" can be +- Quickfix also knows "info", next to "warning" and "error" types. "%I" can be used for the start of a multi-line informational message. (Tony Leneis) - The "%p" argument can be used in 'errorformat' to get the column number from a line where "^" points to the column. (Stefan Roemer) @@ -1144,7 +1144,7 @@ The View also contains the local argumen and closed folds. Added the ":loadview" command and the 'viewdir' option: Allows for saving and -restoring views of a file with simple commands. ":mkview 1" saves view 1 for +restoring views of a file with simple commands. ":mkview 1" saves view 1 for the current file, ":loadview 1" loads it again. Also allows quickly switching between two views on one file. And saving and restoring manual folds and the folding state. @@ -3303,7 +3303,7 @@ open the GUI window early to be able to dialog. "r" on a multi-byte character deleted only the first byte of the -character. "3r" deleted three bytes instead of three characters. +character. "3r" deleted three bytes instead of three characters. When interrupting reading a file, Vi considers the buffer modified. Added the 'i' flag in 'cpoptions' flag for this (we don't want it modified to be able to @@ -3830,7 +3830,7 @@ Problem: VMS: Printing doesn't work, No longer need the VMS specific printing menu. gethostname() is not available with VAXC. The makefile was lacking selection of the tiny-huge feature set. -Solution: Adjust the 'printexpr' option default. Fix the other problems and +Solution: Adjust the 'printexpr' option default. Fix the other problems and update the documentation. (Zoltan Arpadffy) Files: runtime/doc/os_vms.txt, runtime/menu.vim, src/INSTALLvms.txt, src/Make_vms.mms, src/option.c, src/os_unix.c, src/os_vms_conf.h @@ -3843,7 +3843,7 @@ Files: src/ops.c Patch 6.0.029 Problem: When making a change in line 1, then in line 2 and then deleting - line 1, undo info could be wrong. Only when the changes are undone + line 1, undo info could be wrong. Only when the changes are undone at once. (Gerhard Hochholzer) Solution: When not saving a line for undo because it was already done before, remember for which entry the last line must be computed. @@ -3891,7 +3891,7 @@ Files: runtime/menu.vim Patch 6.0.036 Problem: OS/2, MS-DOS and MS-Windows: Using a path that starts with a - slash in 'tags' doesn't work as expected. (Mathias Koehrer + slash in 'tags' doesn't work as expected. (Mathias Koehrer) Solution: Only use the drive, not the whole path to the current directory. Also make it work for "c:dir/file". Files: src/misc2.c @@ -6127,7 +6127,7 @@ New message translation for Norwegian. (Øyvind Holm) New color scheme: desert (Hans Fugal) -Arabic specific features. 'arabicshape', 'termbidi', 'arabic' and +Arabic specific features. 'arabicshape', 'termbidi', 'arabic' and 'rightleftcmd' options. (Nadim Shaikli & Isam Bayazidi) Support for neXtaw GUI toolkit, mostly like Athena. (Alexey Froloff) @@ -6810,7 +6810,7 @@ Files: runtime/filetype.vim, runtime Patch 6.1.056 Problem: Loading the Syntax menu can take quite a bit of time. -Solution: Add the "skip_syntax_sel_menu" variable. When its defined the +Solution: Add the "skip_syntax_sel_menu" variable. When it's defined the available syntax files are not in the Syntax menu. Files: runtime/doc/gui.txt, runtime/menu.vim @@ -7640,7 +7640,7 @@ Problem: The extra mouse buttons foun Solution: Support two extra buttons for MS-Windows. (Michael Geddes) Files: runtime/doc/term.txt, src/edit.c, src/ex_getln.c, src/gui.c, src/gui_w32.c, src/gui_w48.c, src/keymap.h, src/message.c, - src/misc1.c, src/misc2.c, src/normal.c. src/vim.h + src/misc1.c, src/misc2.c, src/normal.c, src/vim.h Patch 6.1.185 (depends on 6.1.182) Problem: Can't compile without +comments feature. diff --git a/runtime/doc/vimdiff-fr.1 b/runtime/doc/vimdiff-fr.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/vimdiff-fr.1 @@ -0,0 +1,53 @@ +.TH VIMDIFF 1 "30 mars 2001" +.SH NOM +vimdiff \- ouvre deux ou trois versions d'un fichier dans Vim et affiche +leurs différences +.SH SYNOPSIS +.br +.B vimdiff +[options] fichier1 fichier2 [fichier3] +.PP +.B gvimdiff +.SH DESCRIPTION +.B Vimdiff +démarre +.B Vim +avec deux (ou trois) fichiers. +Chaque fichier est ouvert dans sa propre fenêtre. +Les différences entres ces fichiers sont mises en surbrillance. +C'est un outil très pratique pour visualiser et reporter les +changements entre deux versions d'un même fichier. +.PP +Consulter vim(1) pour des informations sur l'éditeur Vim lui-même. +.PP +Si +.B gvimdiff +est invoqué, l'IHM graphique est démarrée quand elle est disponible. +.PP +L'option 'diff' est activée dans chacune des fenêtres, ce qui provoque la mise +en surbrillance des différences. +.br +Les options 'wrap' et 'scrollbind' sont activées pour donner un aspect +agréable au texte. +.br +L'option 'foldmethod' est fixée à "diff", ce qui replie les lignes consécutives +identiques. 'foldcolumn' est fixé à 2 pour trouver les replis rapidement et +les ouvrir ou les fermer facilement. +.SH ARGUMENTS +La fenêtre de Vim est partagée verticalement afin d'afficher les lignes +correspondantes les unes en face des autres, comme si l'argument "\-O" était +spécifié. Utilisez l'argument "\-o" pour obtenir un partage horizontal à la +place. +.PP +Pour connaître les autres arguments disponibles, consultez vim(1). +.SH VOIR AUSSI +vim(1) +.SH AUTEUR +La majeure partie de +.B Vim +a été écrite par Bram Moolenaar, avec l'aide de nombreux autres contributeurs. +Voir ":help credits" dans +.B Vim. +.SH TRADUCTION +Cette page de manuel a été traduite par David Blanchet + 2005-03-12. diff --git a/runtime/doc/vimdiff-fr.UTF-8.1 b/runtime/doc/vimdiff-fr.UTF-8.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/vimdiff-fr.UTF-8.1 @@ -0,0 +1,53 @@ +.TH VIMDIFF 1 "30 mars 2001" +.SH NOM +vimdiff \- ouvre deux ou trois versions d'un fichier dans Vim et affiche +leurs différences +.SH SYNOPSIS +.br +.B vimdiff +[options] fichier1 fichier2 [fichier3] +.PP +.B gvimdiff +.SH DESCRIPTION +.B Vimdiff +démarre +.B Vim +avec deux (ou trois) fichiers. +Chaque fichier est ouvert dans sa propre fenêtre. +Les différences entres ces fichiers sont mises en surbrillance. +C'est un outil très pratique pour visualiser et reporter les +changements entre deux versions d'un même fichier. +.PP +Consulter vim(1) pour des informations sur l'éditeur Vim lui-même. +.PP +Si +.B gvimdiff +est invoqué, l'IHM graphique est démarrée quand elle est disponible. +.PP +L'option 'diff' est activée dans chacune des fenêtres, ce qui provoque la mise +en surbrillance des différences. +.br +Les options 'wrap' et 'scrollbind' sont activées pour donner un aspect +agréable au texte. +.br +L'option 'foldmethod' est fixée à "diff", ce qui replie les lignes consécutives +identiques. 'foldcolumn' est fixé à 2 pour trouver les replis rapidement et +les ouvrir ou les fermer facilement. +.SH ARGUMENTS +La fenêtre de Vim est partagée verticalement afin d'afficher les lignes +correspondantes les unes en face des autres, comme si l'argument "\-O" était +spécifié. Utilisez l'argument "\-o" pour obtenir un partage horizontal à la +place. +.PP +Pour connaître les autres arguments disponibles, consultez vim(1). +.SH VOIR AUSSI +vim(1) +.SH AUTEUR +La majeure partie de +.B Vim +a été écrite par Bram Moolenaar, avec l'aide de nombreux autres contributeurs. +Voir ":help credits" dans +.B Vim. +.SH TRADUCTION +Cette page de manuel a été traduite par David Blanchet + 2005-03-12. diff --git a/runtime/doc/vimdiff.man b/runtime/doc/vimdiff.man --- a/runtime/doc/vimdiff.man +++ b/runtime/doc/vimdiff.man @@ -1,12 +1,10 @@ +VIMDIFF(1) VIMDIFF(1) -VIMDIFF(1) VIMDIFF(1) - - NAME - vimdiff - edit two or three versions of a file with Vim - and show differences + vimdiff - edit two or three versions of a file with Vim and show dif- + ferences SYNOPSIS vimdiff [options] file1 file2 [file3] @@ -14,30 +12,25 @@ SYNOPSIS gvimdiff DESCRIPTION - Vimdiff starts Vim on two (or three) files. Each file - gets its own window. The differences between the files - are highlighted. This is a nice way to inspect changes - and to move changes from one version to another version of - the same file. + Vimdiff starts Vim on two (or three) files. Each file gets its own + window. The differences between the files are highlighted. This is a + nice way to inspect changes and to move changes from one version to + another version of the same file. See vim(1) for details about Vim itself. - When started as gvimdiff the GUI will be started, if - available. + When started as gvimdiff the GUI will be started, if available. - In each window the 'diff' option will be set, which causes - the differences to be highlighted. - The 'wrap' and 'scrollbind' options are set to make the - text look good. - The 'foldmethod' option is set to "diff", which puts - ranges of lines without changes in a fold. 'foldcolumn' - is set to two to make it easy to spot the folds and open - or close them. + In each window the 'diff' option will be set, which causes the differ- + ences to be highlighted. + The 'wrap' and 'scrollbind' options are set to make the text look good. + The 'foldmethod' option is set to "diff", which puts ranges of lines + without changes in a fold. 'foldcolumn' is set to two to make it easy + to spot the folds and open or close them. OPTIONS - Vertical splits are used to align the lines, as if the - "-O" argument was used. To use horizontal splits intead, - use the "-o" argument. + Vertical splits are used to align the lines, as if the "-O" argument + was used. To use horizontal splits intead, use the "-o" argument. For all other arguments see vim(1). @@ -45,22 +38,9 @@ SEE ALSO vim(1) AUTHOR - Most of Vim was made by Bram Moolenaar, with a lot of help - from others. See ":help credits" in Vim. - - - - - + Most of Vim was made by Bram Moolenaar, with a lot of help from others. + See ":help credits" in Vim. - - - - - - - 2001 March 30 1 - - + 2001 March 30 VIMDIFF(1) diff --git a/runtime/doc/vimtutor-fr.1 b/runtime/doc/vimtutor-fr.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/vimtutor-fr.1 @@ -0,0 +1,55 @@ +.TH VIMTUTOR 1 "2 avril 2001" +.SH NAME +vimtutor \- tutoriel Vim +.SH SYNOPSIS +.br +.B vimtutor [langue] +.SH DESCRIPTION +.B Vimtutor +lance le tutoriel +.B Vim +\. +Il copie d'abord le fichier du tutoriel, afin que vous puissiez le modifier +sans altérer le fichier original. +.PP +.B Vimtutor +est utile pour les personnes souhaitant apprendre leurs premières commandes +.B Vim +\. +.PP +L'argument optionnel [langue] est le nom d'une langue, spécifiée par son +symbole à deux lettres, tels que "it" ou "es". Si l'argument [langue] est omis, +la langue de la région linguistique actuelle sera retenue. Si le tutoriel est +disponible dans cette langue, il est proposé. Sinon, c'est la version anglaise +qui est proposée. +.PP +.B Vim +est toujours lancé en mode Compatible Vi. +.SH FICHIERS +.TP 15 +/usr/local/lib/vim/tutor/tutor[.langue] +Les fichiers textes de +.B Vimtutor +\. +.TP 15 +/usr/local/lib/vim/tutor/tutor.vim +Le script Vim utilisé pour copier les fichiers texte de +.B Vimtutor +\. +.SH AUTEUR +.B Vimtutor +a été écrit à l'origine pour Vi par Michael C. Pierce et Robert K. Ware, de la +Colorado School of Mines, en reprenant des idées émises par Charles Smith, de +la Colorado State University. +E-mail : bware@mines.colorado.edu. +.br +Il a été modifié pour +.B Vim +par Bram Moolenaar. +Pour connaître le nom des traducteurs, consultez les fichiers textes du +tutoriel. +.SH VOIR AUSSI +vim(1) +.SH TRADUCTION +Cette page de manuel a été traduite par David Blanchet + 2004-12-27. diff --git a/runtime/doc/vimtutor-fr.UTF-8.1 b/runtime/doc/vimtutor-fr.UTF-8.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/vimtutor-fr.UTF-8.1 @@ -0,0 +1,55 @@ +.TH VIMTUTOR 1 "2 avril 2001" +.SH NAME +vimtutor \- tutoriel Vim +.SH SYNOPSIS +.br +.B vimtutor [langue] +.SH DESCRIPTION +.B Vimtutor +lance le tutoriel +.B Vim +\. +Il copie d'abord le fichier du tutoriel, afin que vous puissiez le modifier +sans altérer le fichier original. +.PP +.B Vimtutor +est utile pour les personnes souhaitant apprendre leurs premières commandes +.B Vim +\. +.PP +L'argument optionnel [langue] est le nom d'une langue, spécifiée par son +symbole à deux lettres, tels que "it" ou "es". Si l'argument [langue] est omis, +la langue de la région linguistique actuelle sera retenue. Si le tutoriel est +disponible dans cette langue, il est proposé. Sinon, c'est la version anglaise +qui est proposée. +.PP +.B Vim +est toujours lancé en mode Compatible Vi. +.SH FICHIERS +.TP 15 +/usr/local/lib/vim/tutor/tutor[.langue] +Les fichiers textes de +.B Vimtutor +\. +.TP 15 +/usr/local/lib/vim/tutor/tutor.vim +Le script Vim utilisé pour copier les fichiers texte de +.B Vimtutor +\. +.SH AUTEUR +.B Vimtutor +a été écrit à l'origine pour Vi par Michael C. Pierce et Robert K. Ware, de la +Colorado School of Mines, en reprenant des idées émises par Charles Smith, de +la Colorado State University. +E-mail : bware@mines.colorado.edu. +.br +Il a été modifié pour +.B Vim +par Bram Moolenaar. +Pour connaître le nom des traducteurs, consultez les fichiers textes du +tutoriel. +.SH VOIR AUSSI +vim(1) +.SH TRADUCTION +Cette page de manuel a été traduite par David Blanchet + 2004-12-27. diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt --- a/runtime/doc/visual.txt +++ b/runtime/doc/visual.txt @@ -1,4 +1,4 @@ -*visual.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*visual.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -88,8 +88,11 @@ linewise Visual Visual blockwise *gv* *v_gv* gv Start Visual mode with the same area as the previous - area and the same mode. In Visual mode the current and - the previous Visual area are exchanged. + area and the same mode. + In Visual mode the current and the previous Visual + area are exchanged. + After using "p" or "P" in Visual mode the text that + was put will be selected. ** Set the current cursor position. If Visual mode is @@ -272,7 +275,7 @@ See |v_b_I_example|. Visual-block Append *v_b_A* With a blockwise selection, A{string} will append {string} to the end of -block on every line of the block. There is some differing behavior where the +block on every line of the block. There is some differing behavior where the block RHS is not straight, due to different line lengths: 1. Block was created with $ @@ -297,12 +300,12 @@ all lines. *v_b_<* Visual-block Shift *v_b_>* -The block is shifted by 'shiftwidth'. The RHS of the block is irrelevant. The +The block is shifted by 'shiftwidth'. The RHS of the block is irrelevant. The LHS of the block determines the point from which to apply a right shift, and -padding includes TABs optimally according to 'ts' and 'et'. The LHS of the +padding includes TABs optimally according to 'ts' and 'et'. The LHS of the block determines the point upto which to shift left. Note: v_< padding is buggy if the Visual Block starts and ends in the same - TAB. (Vim 5.4c). + TAB. (Vim 5.4c) See |v_b_>_example|. See |v_b_<_example|. @@ -364,14 +367,14 @@ Note that special characters (like '.' a Visual-block Examples *blockwise-examples* With the following text, I will indicate the commands to produce the block and -the results below. In all cases, the cursor begins on the 'a' in the first +the results below. In all cases, the cursor begins on the 'a' in the first line of the test text. The following modeline settings are assumed ":ts=8:sw=4:". It will be helpful to :set hls / -where is a real TAB. This helps visualise the operations. +where is a real TAB. This helps visualise the operations. The test text is: diff --git a/runtime/doc/xxd-fr.1 b/runtime/doc/xxd-fr.1 new file mode 100644 --- /dev/null +++ b/runtime/doc/xxd-fr.1 @@ -0,0 +1,395 @@ +.TH XXD 1 "août 1996" "Page de manuel pour xxd" +.\" +.\" 21st May 1996 +.\" Man page author: +.\" Tony Nugent +.\" Changes by Bram Moolenaar +.\" French translation by David Blanchet 2005-03 +.SH NOM +.I xxd +\- convertit en représentation hexadécimale et inversement. +.SH SYNOPSIS +.B xxd +\-h[elp] +.br +.B xxd +[options] [fichier_entree [fichier_sortie]] +.br +.B xxd +\-r[evert] [options] [fichier_entree [fichier_sortie]] +.SH DESCRIPTION +.I xxd +crée un fichier contenant la représentation hexadécimale d'un fichier +binaire ou de l'entrée standard. +Il peut également convertir un fichier de codes hexadécimaux en un fichier +binaire. +Comme +.BR uuencode(1) +et +.BR uudecode(1) +il permet la transmission de données binaires dans une représentation ASCII +compatible avec le courrier électronique, mais a l'avantage de décoder la +sortie standard. +De plus, il peut être utilisé pour appliquer des rustines à des fichiers +binaires. +.SH OPTIONS +Si aucun +.I fichier_entree +n'est spécifié, l'entrée standard est utilisée. +Si +.I fichier_entree +correspond au caractère +.RB '\-' +\, l'entrée standard est employée comme source des données en entrée. +Si aucun +.I fichier_sortie +n'est spécifié (ou qu'un caractère +.RB '\-' +est donné à sa place), le résultat est envoyé sur la sortie standard. +.PP +NOTE : un analyseur paresseux est utilisé. Il ne vérifie pas au-delà de la +première lettre de l'option, à moins que cette dernière ne requiert un +paramètre. +L'espace entre l'option et son paramètre est optionnel. +Les paramètres des options peuvent être spécifiés en notation décimale, +hexadécimale ou octale. +Ainsi +.BR \-c8 , +.BR "\-c 8" , +.B \-c 010 +et +.B \-cols 8 +sont tous équivalents. +.TP +.IR \-a " | " \-autoskip +active la fonctionnalité "autoskip" : le caractère '*' remplace les lignes +d'octets nuls. Désactivée par défaut. +.TP +.IR \-b " | " \-bits +Convertit en binaires plutôt qu'en hexadécimal. +Cette option écrit les octets comme une séquence de "1" et de "0" au lieu +d'une conversion en hexadécimal traditionnel. Chaque ligne est précédée par un +numéro de ligne en hexadécimal et suivie de la représentation ASCII (ou +EBCDIC) correspondante. Les options \-r, \-p, \-i ne fonctionnent pas dans ce +mode. +.TP +.IR "\-c cols " | " \-cols cols" +place +.RI < cols > +octets par ligne. 16 par défaut (\-i : 12, \-ps : 30, \-b : 6). Maximum 256. +.TP +.IR \-E " | " \-EBCDIC +Passe le codage des caractères de la colonne de droite de ASCII à EBCDIC. +Cela ne change pas la représentation hexadécimale. Cette option est sans effet +quand elle est utilisée avec \-r, \-p or \-i. +.TP +.IR "\-g octets " | " \-groupsize octets" +Regroupe les octets (deux chiffres hexadécimaux ou huit chiffres binaires) +par groupe de +.RI < octets > +\, séparés par des espaces blancs. Spécifiez +.I \-g 0 +pour supprimer le regroupement. +.RI < octets > +vaut 2 par défaut dans le mode normal et \fI1\fP en +représentation binaire. Le regroupement ne s'applique pas aux styles +Postscript et Include. +.TP +.IR \-h " | " \-help +Affiche un résumé des commandes disponibles et quitte. Aucune conversion n'est +effectuée. +.TP +.IR \-i " | " \-include +produit une sortie dans le style #include (fichier C à inclure). La définition +complète d'un tableau statique est écrite et est nommée d'après le fichier +d'origine, à moins que xxd lise depuis l'entrée standard. +.TP +.IR "\-l long " | " \-len long" +Arrête après l'écriture de +.RI < long > +octets. +.TP +.IR \-p " | " \-ps " | " \-postscript " | " \-plain +Produit une conversion continue dans le style Postscript (postscript continuous +hexdumd style). +Également connu sous le nom de « conversion brute » (plain hexdump style). +.TP +.IR \-r " | " \-revert +Opération inverse : convertit un fichier hexadécimal en un fichier binaire (ou +applique une rustine à un fichier binaire). +Si l'écriture n'a pas lieu sur la sortie standard, xxd écrit dans le fichier +qu'il produit sans le tronquer. Utilisez la combinaison +.I \-r \-p +pour lire de l'hexadécimal brut sans information sur le numéro des lignes et +sans format de colonnes particulier. Des espaces blancs et coupures de lignes +supplémentaires sont autorisés à n'importe quel endroit. +.TP +.I \-seek décalage +Utilisé après l'option +.I \-r +\: inverse la conversion en ajoutant +.RI < décalage > +aux positions dans le fichier données dans le code hexadécimal. +.TP +.I \-s [\+][\-]décalage +Débute au +.RI < décalage > +absolu ou relatif dans fichier_entree. +\fI\+ \fRindique que le décalage est relatif à la position courante dans +l'entrée standard (sans effet si la lecture n'a pas lieu sur l'entrée +standard). \fI\- \fRindique un décalage en caractères depuis la fin de +l'entrée (utilisé avec \fI \+ \fR, désigne la position avant la position +actuelle de l'entrée standard). +Sans l'option \-s, xxd démarre à la position courante du fichier. +.TP +.I \-u +Utilise des chiffres hexadécimaux majuscules. La casse par défaut est +minuscule. +.TP +.IR \-v " | " \-version +Affiche la version de xxd. +.SH MISE EN GARDE +.I xxd \-r +effectue des opérations internes un peu obscures lors de l'évaluation +des informations sur les numéros de lignes. Si le fichier de sortie est +adressable, alors les numéros de lignes au début de chaque ligne d'hexadécimal +peuvent être désordonnées, des lignes peuvent manquer ou se chevaucher. Dans +ces cas, xxd utilisera lseek(2) pour déterminer la prochaine position. Si le +fichier n'est pas adressable, seuls les vides sont autorisés, et ils seront +comblés par des octets nuls. +.PP +.I xxd \-r +ne génère aucune erreur lors de l'analyse. Le problème sont passés +silencieusement. +.PP +Lors de l'édition de la représentation hexadécimale, veuillez noter que +.I xxd \-r +ignore tout ce qui se trouve sur la ligne après avoir lu suffisamment de +données hexadécimales (voir l'option \-c). Cela signifie également que les +modifications dans la colonne ASCII (ou EBCDIC) sont toujours ignorées. La +conversion inverse de données hexadécimales brutes (postscript) avec xxd \-r +\-p ne dépend pas d'un nombre correct de colonnes. Dans ce cas, tout ce qui +ressemble à une paire de chiffres hexadécimaux est interprété. +.PP +Remarquez la différence entre +.br +\fI% xxd \-i fichier\fR +.br +et +.br +\fI% xxd \-i \< fichier\fR +.PP +.I xxd \-s \+seek +peut différer de +.I xxd \-s seek +\, car lseek(2) est utilisé pour « revenir en arrière ». Le '+' fait une +différence quand la source des données est l'entrée standard et si la position +dans le fichier de l'entrée standard n'est pas au début du fichier lorsque xxd +est démarré et qu'il reçoit ses données. +L'exemple suivant peut vous aider à comprendre (ou bien vous perdre davantage +encore !)... +.PP +Remettre l'entrée standard au départ avant de lire ; nécessaire car 'cat' a +déjà lu jusqu'à la fin de l'entrée standard. +.br +\fI% sh \-c 'cat > donnees_binaires; xxd \-s 0 > donnees_hexa' < fichier\fR +.PP +Convertir à partir de la position 0x480 (= 1024 + 128) du fichier. +Le symbole '+' signifie "relativement à la position actuelle', ainsi 128 est +ajouté aux 1024 octets comptabilisés pour dd. +.br +\fI% sh \-c 'dd of=donnees_binaires bs=1k count=1; xxd \-s +128 > +donnees_hexa' < fichier\fR +.PP +Convertir de fichier depuis la position 0x100 (= 1024 - 768) du fichier. +.br +\fI% sh \-c 'dd of=donnees_binaires bs=1k count=1; xxd \-s +\-768 > +donnees_hexa' < fichier\fR +.PP +Toutefois, cette situation est peu fréquente et l'utilisation de '+' est +rarement requise. L'auteur préfère surveiller les effets de xxd avec strace(1) +ou truss(1) quand \-s est employé. +.SH EXEMPLES +Afficher la totalité du +.B fichier +sauf les trois premières lignes (0x30 octets en hexadécimal). +.br +\fI% xxd \-s 0x30 fichier\fR +.PP +afficher les trois dernières lignes (0x30 octets en hexadécimal) du +.B fichier +\. +.br +\fI% xxd \-s \-0x30 fichier\fR +.PP +.br +Afficher 120 octets convertis en continu, avec 20 octets par ligne. +.br +\fI% xxd \-l 120 \-ps \-c 20 xxd\-fr.1\fR +.br +2e54482058584420312022616ffb742031393936 +.br +22202250616765206465206d616e75656c20706f +.br +757220787864220a2e5c220a2e5c222032317374 +.br +204d617920313939360a2e5c22204d616e207061 +.br +676520617574686f723a0a2e5c2220202020546f +.br +6e79204e7567656e74203c746f6e79407363746e +.br +204e7567656e74203c746f6e79407363746e7567 +.br +2e54482058584420312022417567757374203139 +.PP +Convertir les 120 premiers octets de cette page de manuel avec 12 octets par +ligne. +.br +\fI% xxd \-l 120 \-c 12 xxd\-fr.1\fR +.br +0000000: 2e54 4820 5858 4420 3120 2261 .TH XXD 1 "a +.br +000000c: 6ffb 7420 3139 3936 2220 2250 o.t 1996" "P +.br +0000018: 6167 6520 6465 206d 616e 7565 age de manue +.br +0000024: 6c20 706f 7572 2078 7864 220a l pour xxd". +.br +0000030: 2e5c 220a 2e5c 2220 3231 7374 .\"..\" 21st +.br +000003c: 204d 6179 2031 3939 360a 2e5c May 1996..\ +.br +0000048: 2220 4d61 6e20 7061 6765 2061 " Man page a +.br +0000054: 7574 686f 723a 0a2e 5c22 2020 uthor:..\" +.br +0000060: 2020 546f 6e79 204e 7567 656e Tony Nugen +.br +000006c: 7420 3c74 6f6e 7940 7363 746e t fichier_sortie\fR +.PP +Patcher la date dans le fichier xxd.1 +.br +\fI% echo '0000037: 3574 68' | xxd \-r \- xxd\-fr.1\fR +.br +\fI% xxd \-s 0x38 \-l 13 \-c 13 xxd\-fr.1\fR +.br +0000036: 3235 7468 204d 6179 2031 3939 36 25th May 1996 +.PP +Créer un fichier de 65537 octets tous nuls (0x00), +sauf le dernier qui vaut 'A' (0x41 en hexadécimal). +.br +\fI% echo '010000: 41' | xxd \-r \> fichier\fR +.PP +.br +Convertir le fichier de l'exemple précédent avec la fonctionnalité "autoskip". +.br +\fI% xxd \-a \-c 12 fichier\fR +.br +0000000: 0000 0000 0000 0000 0000 0000 ............ +.br +* +.br +000fffc: 0000 0000 40 ....A +.PP +Créer un fichier d'un octet, contenant seulement le caractère 'A'. +Les nombres après '\-r \-s' s'ajoutent au numéros de lignes trouvées dans le +fichier ; XXX in effects, les octets initiaux sont supprimés. +.br +\fI% echo '010000: 41' | xxd \-r \-s \-0x10000 \> fichier\fR +.PP +Utiliser xxd comme filtre dans un éditeur tel que +.B vim(1) +pour convertir une zone comprise entre les marques 'a' et 'z'. +.br +\fI:'a,'z!xxd\fR +.PP +Utiliser xxd comme filtre dans un éditeur tel que +.B vim(1) +pour récupérer une conversion binaire comprise entre les marques 'a' et 'z'. +.br +\fI:'a,'z!xxd \-r\fR +.PP +Utiliser xxd comme filtre dans un éditeur tel que +.B vim(1) +pour récupérer une ligne convertie. Placez le curseur sur la ligne et tapez : +.br +\fI!!xxd \-r\fR +.PP +Lire des caractères depuis une connexion série : +.br +\fI% xxd \-c1 < /dev/term/b &\fR +.br +\fI% stty < /dev/term/b \-echo \-opost \-isig \-icanon min 1\fR +.br +\fI% echo \-n foo > /dev/term/b\fR +.SH VALEURS DE RETOUR +Les erreurs suivantes sont rapportées : +.TP +0 +aucune erreur ne s'est produit. +.TP +\-1 +opération non supportée ( +.I xxd \-r \-i +reste impossible). +.TP +1 +erreur lors de l'analyse des options. +.TP +2 +problème avec le fichier d'entrée. +.TP +3 +problème avec le fichier de sortie. +.TP +4, 5 +la position spécifiée n'est pas atteignable. +.SH VOIR AUSSI +uuencode(1), uudecode(1), patch(1) +.SH AVERTISSEMENTS +L'étrangeté de cet outil reflète celle du cerveau de ses créateurs. +Utilisez cet outil à vos risques et périls. Dupliquez vos fichiers. +Surveillez l'outil. Devenez un gourou. +.SH VERSION +Cette page de manuel documente la version 1.7 de xxd. +.SH AUTEUR +(c) 1990-1997 par Juergen Weigert +.br + +.LP +"Distribute freely and credit me, +.br +make money and share with me, +.br +lose money and don't ask me." +.PP +Distribution libre en citant l'auteur, +.br +gagnez de l'argent, pensez à moi, +.br +perdez de l'argent, oubliez-moi. +.PP +Page de manuel débutée par Tony Nugent +.br + +.br +Modifications mineures par Bram Moolenaar. +Édité par Juergen Weigert. +.SH TRADUCTION +Cette page de manuel a été traduite par David Blanchet + 2004-12-24. diff --git a/runtime/spell/README.txt b/runtime/spell/README.txt new file mode 100644 --- /dev/null +++ b/runtime/spell/README.txt @@ -0,0 +1,935 @@ +The spell files included here are in Vim's special format. You can't edit +them. See ":help spell" for more information. + + +Copyright + +The files used as input for the spell files come from the OpenOffice.org spell +files. Most of them go under the LGPL or a similar license. + +Copyright notices for specific languages follow. Note that the files for +different regions are merged, both to save space and to make it possible to +highlight words for another region different from bad words. + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +en_US + +20040623 release. +-- +This dictionary is based on a subset of the original +English wordlist created by Kevin Atkinson for Pspell +and Aspell and thus is covered by his original +LGPL license. The affix file is a heavily modified +version of the original english.aff file which was +released as part of Geoff Kuenning's Ispell and as +such is covered by his BSD license. + +Thanks to both authors for there wonderful work. + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +en_AU + +This dictionary was based on the en_GB Myspell dictionary +which in turn was initially based on a subset of the +original English wordlist created by Kevin Atkinson for +Pspell and Aspell and thus is covered by his original +LGPL licence. + +The credit for this en_AU dictionary goes to: + +Kelvin Eldridge (maintainer) +Jean Hollis Weber +David Wilson + +- Words incorrect in Australian English removed +- a list from the previously removed words with corrected spelling was added +- a list of major rivers was added +- a list of place names was added +- a list of Australian mammals was added +- a list of Aboriginal/Koori words commonly used was added + +A total of 119,267 words are now recognized +by the dictionary. + +Of course, special thanks go to the editors of the +en_GB dictionary (David Bartlett, Brian Kelk and +Andrew Brown) which provided the starting point +for this dictionary. + +The affix file is currently a duplicate of the en_AU.aff +created completely from scratch by David Bartlett and +Andrew Brown, based on the published +rules for MySpell and is also provided under the LGPL. + +If you find omissions or bugs or have new words to +add to the dictionary, please contact the en_AU +maintainer at: + + "Kelvin" + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +en_CA + +The dictionary file was created using the "final" English and Canadian SCOWL +(Spell Checker Oriented Word Lists) wordlists available at Kevin's Word Lists +Page (http://wordlist.sourceforge.net). Lists with the suffixes 10, 20, 35, +50, 65 and 65 were used. Lists with the suffixes 70, 80 and 95 were excluded. +Copyright information for SCOWL and the wordlists used in creating it is +reproduced below. + +The affix file is identical to the MySpell English (United States) affix file. +It is a heavily modified version of the original english.aff file which was +released as part of Geoff Kuenning's Ispell and as such is covered by his BSD +license. + +--- + +COPYRIGHT, SOURCES, and CREDITS from SCOWL readme file: + +The collective work is Copyright 2000 by Kevin Atkinson as well as any +of the copyrights mentioned below: + + Copyright 2000 by Kevin Atkinson + + Permission to use, copy, modify, distribute and sell these word + lists, the associated scripts, the output created from the scripts, + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appears in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Kevin Atkinson makes no representations + about the suitability of this array for any purpose. It is provided + "as is" without express or implied warranty. + +Alan Beale also deserves special credit as he has, +in addition to providing the 12Dicts package and being a major +contributor to the ENABLE word list, given me an incredible amount of +feedback and created a number of special lists (those found in the +Supplement) in order to help improve the overall quality of SCOWL. + +The 10 level includes the 1000 most common English words (according to +the Moby (TM) Words II [MWords] package), a subset of the 1000 most +common words on the Internet (again, according to Moby Words II), and +frequently class 16 from Brian Kelk's "UK English Wordlist +with Frequency Classification". + +The MWords package was explicitly placed in the public domain: + + The Moby lexicon project is complete and has + been place into the public domain. Use, sell, + rework, excerpt and use in any way on any platform. + + Placing this material on internal or public servers is + also encouraged. The compiler is not aware of any + export restrictions so freely distribute world-wide. + + You can verify the public domain status by contacting + + Grady Ward + 3449 Martha Ct. + Arcata, CA 95521-4884 + + grady@netcom.com + grady@northcoast.com + +The "UK English Wordlist With Frequency Classification" is also in the +Public Domain: + + Date: Sat, 08 Jul 2000 20:27:21 +0100 + From: Brian Kelk + +> I was wondering what the copyright status of your "UK English + > Wordlist With Frequency Classification" word list as it seems to + > be lacking any copyright notice. + + There were many many sources in total, but any text marked + "copyright" was avoided. Locally-written documentation was one + source. An earlier version of the list resided in a filespace called + PUBLIC on the University mainframe, because it was considered public + domain. + + Date: Tue, 11 Jul 2000 19:31:34 +0100 + + > So are you saying your word list is also in the public domain? + + That is the intention. + +The 20 level includes frequency classes 7-15 from Brian's word list. + +The 35 level includes frequency classes 2-6 and words appearing in at +least 11 of 12 dictionaries as indicated in the 12Dicts package. All +words from the 12Dicts package have had likely inflections added via +my inflection database. + +The 12Dicts package and Supplement is in the Public Domain. + +The WordNet database, which was used in the creation of the +Inflections database, is under the following copyright: + + This software and database is being provided to you, the LICENSEE, + by Princeton University under the following license. By obtaining, + using and/or copying this software and database, you agree that you + have read, understood, and will comply with these terms and + conditions.: + + Permission to use, copy, modify and distribute this software and + database and its documentation for any purpose and without fee or + royalty is hereby granted, provided that you agree to comply with + the following copyright notice and statements, including the + disclaimer, and that the same appear on ALL copies of the software, + database and documentation, including modifications that you make + for internal use or for distribution. + + WordNet 1.6 Copyright 1997 by Princeton University. All rights + reserved. + + THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- + ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE + LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY + THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + The name of Princeton University or Princeton may not be used in + advertising or publicity pertaining to distribution of the software + and/or database. Title to copyright in this software, database and + any associated documentation shall at all times remain with + Princeton University and LICENSEE agrees to preserve same. + +The 50 level includes Brian's frequency class 1, words words appearing +in at least 5 of 12 of the dictionaries as indicated in the 12Dicts +package, and uppercase words in at least 4 of the previous 12 +dictionaries. A decent number of proper names is also included: The +top 1000 male, female, and Last names from the 1990 Census report; a +list of names sent to me by Alan Beale; and a few names that I added +myself. Finally a small list of abbreviations not commonly found in +other word lists is included. + +The name files form the Census report is a government document which I +don't think can be copyrighted. + +The name list from Alan Beale is also derived from the linux words +list, which is derived from the DEC list. He also added a bunch of +miscellaneous names to the list, which he released to the Public Domain. + +The DEC Word list doesn't have a formal name. It is labeled as "FILE: +english.words; VERSION: DEC-SRC-92-04-05" and was put together by Jorge +Stolfi DEC Systems Research Center. The DEC Word +list has the following copyright statement: + + (NON-)COPYRIGHT STATUS + + To the best of my knowledge, all the files I used to build these + wordlists were available for public distribution and use, at least + for non-commercial purposes. I have confirmed this assumption with + the authors of the lists, whenever they were known. + + Therefore, it is safe to assume that the wordlists in this package + can also be freely copied, distributed, modified, and used for + personal, educational, and research purposes. (Use of these files in + commercial products may require written permission from DEC and/or + the authors of the original lists.) + + Whenever you distribute any of these wordlists, please distribute + also the accompanying README file. If you distribute a modified + copy of one of these wordlists, please include the original README + file with a note explaining your modifications. Your users will + surely appreciate that. + + (NO-)WARRANTY DISCLAIMER + + These files, like the original wordlists on which they are based, + are still very incomplete, uneven, and inconsitent, and probably + contain many errors. They are offered "as is" without any warranty + of correctness or fitness for any particular purpose. Neither I nor + my employer can be held responsible for any losses or damages that + may result from their use. + +However since this Word List is used in the linux.words package which +the author claims is free of any copyright I assume it is OK to use +for most purposes. If you want to use this in a commercial project +and this concerns you the information from the DEC word list can +easily be removed without much sacrifice in quality as only the name +lists were used. + +The file special-jargon.50 uses common.lst and word.lst from the +"Unofficial Jargon File Word Lists" which is derived from "The Jargon +File". All of which is in the Public Domain. This file also contain +a few extra UNIX terms which are found in the file "unix-terms" in the +special/ directory. + +The 60 level includes Brian's frequency class 0 and all words +appearing in at least 2 of the 12 dictionaries as indicated by the +12Dicts package. A large number of names are also included: The 4,946 +female names and 3,897 male names from the MWords package and the +files "computer.names", "misc.names", and "org.names" from the DEC +package. + +The 65 level includes words found in the Ispell "medium" word list. +The Ispell word lists are under the same copyright of Ispell itself +which is: + + Copyright 1993, Geoff Kuenning, Granada Hills, CA + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All modifications to the source code must be clearly marked as + such. Binary redistributions based on modified source code + must be clearly marked as modified versions in the documentation + and/or other materials provided with the distribution. + 4. All advertising materials mentioning features or use of this software + must display the following acknowledgment: + This product includes software developed by Geoff Kuenning and + other unpaid contributors. + 5. The name of Geoff Kuenning may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF + KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +The 70 level includes the 74,550 common dictionary words and the 21,986 names +list from the MWords package. The common dictionary words, like those +from the 12Dicts package, have had all likely inflections added. + +The 80 level includes the ENABLE word list, all the lists in the +ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics +Dictionary" (UKACD), the list of signature words in from YAWL package, +and the 10,196 places list from the MWords package. + +The ENABLE package, mainted by M\Cooper , +is in the Public Domain: + + The ENABLE master word list, WORD.LST, is herewith formally released + into the Public Domain. Anyone is free to use it or distribute it in + any manner they see fit. No fee or registration is required for its + use nor are "contributions" solicited (if you feel you absolutely + must contribute something for your own peace of mind, the authors of + the ENABLE list ask that you make a donation on their behalf to your + favorite charity). This word list is our gift to the Scrabble + community, as an alternate to "official" word lists. Game designers + may feel free to incorporate the WORD.LST into their games. Please + mention the source and credit us as originators of the list. Note + that if you, as a game designer, use the WORD.LST in your product, + you may still copyright and protect your product, but you may *not* + legally copyright or in any way restrict redistribution of the + WORD.LST portion of your product. This *may* under law restrict your + rights to restrict your users' rights, but that is only fair. + +UKACD, by J Ross Beresford , is under the +following copyright: + + Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved. + + The following restriction is placed on the use of this publication: + if The UK Advanced Cryptics Dictionary is used in a software package + or redistributed in any form, the copyright notice must be + prominently displayed and the text of this document must be included + verbatim. + + There are no other restrictions: I would like to see the list + distributed as widely as possible. + +The 95 level includes the 354,984 single words and 256,772 compound +words from the MWords package, ABLE.LST from the ENABLE Supplement, +and some additional words found in my part-of-speech database that +were not found anywhere else. + +Accent information was taken from UKACD. + +My VARCON package was used to create the American, British, and +Canadian word list. + +Since the original word lists used used in the +VARCON package came from the Ispell distribution they are under the +Ispell copyright. + +The variant word lists were created from a list of variants found in +the 12dicts supplement package as well as a list of variants I created +myself. + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +en_GB + +This dictionary was initially based on a subset of the +original English wordlist created by Kevin Atkinson for +Pspell and Aspell and thus is covered by his original +LGPL licence. + +It has been extensively updated by David Bartlett, Brian Kelk +and Andrew Brown: +- numerous Americanism have been removed +- numerous American spellings have been corrected +- missing words have been added +- many errors have been corrected +- compound hyphenated words have been added where appropriate + +Valuable inputs to this process were received from many other +people - far too numerous to name. Serious thanks to you all +for your greatly appreciated help. + +This word list is intended to be a good representation of +current modern British English and thus it should be a good +basis for Commonwealth English in most countries of the world +outside North America. + +The affix file has been created completely from scratch +by David Bartlett and Andrew Brown, based on the published +rules for MySpell and is also provided under the LGPL. + +In creating the affix rules an attempt has been made to +reproduce the most general rules for English word +formation, rather than merely use it as a means to +compress the size of the dictionary. It is hoped that this +will facilitate future localisation to other variants of +English. + +Please let David Bartlett know of any +errors that you find. + +The current release is R 1.14, 15/12/02 or later + +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- +en_NZ + +I. Copyright +II. Copying (Licence) +---------------------------- + +I. Copyright + +NZ English Dictionary v0.9 beta - Build 06SEP03 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +NB This is an initial version, please check: +http://lingucomponent.openoffice.org/download_dictionary.html +or +http://www.girlza.com/dictionary/download.html +for a final version, after a little while (no hurry). + +This dictionary is based on the en_GB Myspell dictionary +which in turn was initially based on a subset of the +original English wordlist created by Kevin Atkinson for +Pspell and Aspell and thus is covered by his original +LGPL licence. + + +Introduction +~~~~~~~~~~~~ +en_NZ.dic has been altered to include New Zealand places, +including major cities and towns, and major suburbs. It +also contains NZ words, organisations and expressions. + +en_NZ.aff has had a few REPlace strings added, but is +basically unchanged. + + +Acknowledgements +~~~~~~~~~~~~~~~~ +Thanks must go to the original creators of the British +dictionary, David Bartlett, Brian Kelk and Andrew Brown. + +I wouldn't have started this without seeing the Australian +dictionary, thanks Kelvin Eldridge, Jean Hollis Weber and +David Wilson. + +And thank you to all who've contributed to OpenOffice.org. + + +License +~~~~~~~ +This dictionary is covered by the GNU Lesser General Public +License, viewable at http://www.gnu.org/copyleft/lesser.html + + +Issues +~~~~~~ +Many of the proper nouns already in the dictionary do not have +an affix for 's. +All my new words start after the z's of the original dictionary. + + +Contact +~~~~~~~ +Contact Tristan Burtenshaw (hooty@slingshot.co.nz) with any words, +places or other suggestions for the dictionary. + + + +II. Copying + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/runtime/spell/en.utf-8.spl b/runtime/spell/en.utf-8.spl new file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..88bddbdafd0d1164e2a6ffd89e360da95ba9ec95 GIT binary patch literal 1196398 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

haUFCE8R78Po3m;XZr)WPg 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 nQ) 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

e$)3MwK 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 z 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

eFouQYqSNA_k=z>sz)*mVKTfhRIF<8XlE-${cms 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 D3N{8` diff --git a/runtime/syntax/cs.vim b/runtime/syntax/cs.vim --- a/runtime/syntax/cs.vim +++ b/runtime/syntax/cs.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: C# " Maintainer: Johannes Zellner -" Last Change: Tue, 09 Mar 2004 14:32:13 CET +" Last Change: Mi, 13 Apr 2005 22:52:57 CEST " Filenames: *.cs " $Id$ " @@ -92,7 +92,7 @@ syn match csSpecialChar contained +\\[ " unicode characters syn match csUnicodeNumber +\\\(u\x\{4}\|U\x\{8}\)+ contained contains=csUnicodeSpecifier syn match csUnicodeSpecifier +\\[uU]+ contained -syn region csVerbatimString start=+@"+ end=+"+ end=+$+ contains=csVerbatimSpec +syn region csVerbatimString start=+@"+ end=+"+ end=+$+ skip=+""+ contains=csVerbatimSpec syn match csVerbatimSpec +@"+he=s+1 contained syn region csString start=+"+ end=+"+ end=+$+ contains=csSpecialChar,csSpecialError,csUnicodeNumber syn match csCharacter "'[^']*'" contains=csSpecialChar,csSpecialCharError diff --git a/runtime/syntax/objc.vim b/runtime/syntax/objc.vim --- a/runtime/syntax/objc.vim +++ b/runtime/syntax/objc.vim @@ -3,7 +3,7 @@ " Maintainer: Kazunobu Kuriyama " Ex-maintainer: Anthony Hodsdon " First Author: Valentino Kyriakides <1kyriaki@informatik.uni-hamburg.de> -" Last Change: 2004 May 20 +" Last Change: 2005 Apr 13 " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded @@ -30,8 +30,9 @@ endif " ObjC keywords, types, type qualifiers etc. syn keyword objcStatement self super _cmd -syn keyword objcType id Class SEL IMP BOOL nil Nil +syn keyword objcType id Class SEL IMP BOOL syn keyword objcTypeModifier bycopy in out inout oneway +syn keyword objcConstant nil Nil " Match the ObjC #import directive (like C's #include) syn region objcImported display contained start=+"+ skip=+\\\\\|\\"+ end=+"+ @@ -98,6 +99,7 @@ if version >= 508 || !exists("did_objc_s HiLink objcString cString HiLink objcSpecial Special HiLink objcProtocol None + HiLink objcConstant cConstant delcommand HiLink endif diff --git a/runtime/syntax/xml.vim b/runtime/syntax/xml.vim --- a/runtime/syntax/xml.vim +++ b/runtime/syntax/xml.vim @@ -3,7 +3,7 @@ " Maintainer: Johannes Zellner " Author and previous maintainer: " Paul Siegmann -" Last Change: Fri, 04 Jun 2004 10:41:54 CEST +" Last Change: Mi, 13 Apr 2005 22:40:09 CEST " Filenames: *.xml " $Id$ @@ -58,8 +58,8 @@ syn match xmlError "[<&]" " " " ^^^^^^^ -syn region xmlString contained start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=xmlEntity display -syn region xmlString contained start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=xmlEntity display +syn region xmlString contained start=+"+ end=+"+ contains=xmlEntity display +syn region xmlString contained start=+'+ end=+'+ contains=xmlEntity display " punctuation (within attributes) e.g. @@ -233,7 +233,7 @@ else endif -syn keyword xmlTodo contained TODO FIXME XXX display +syn keyword xmlTodo contained TODO FIXME XXX syn match xmlCommentError contained "[^>= colmax) - colmax += (((col - colmax) - / (colmax + win_col_off2(wp))) + 1) - * (colmax + win_col_off2(wp)); + { + n = colmax + win_col_off2(wp); + if (n > 0) + colmax += (((col - colmax) / n) + 1) * n; + } + for (;;) { ps = s; diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -223,6 +223,9 @@ static void ex_popup __ARGS((exarg_T *ea #ifndef FEAT_SYN_HL # define ex_syntax ex_ni #endif +#if !defined(FEAT_SYN_HL) || !defined(FEAT_MBYTE) +# define ex_mkspell ex_ni +#endif #ifndef FEAT_MZSCHEME # define ex_mzscheme ex_script_ni # define ex_mzfile ex_ni @@ -4149,11 +4152,11 @@ expand_filename(eap, cmdlinep, errormsgp /* For a shell command a '!' must be escaped. */ if ((eap->usefilter || eap->cmdidx == CMD_bang) - && vim_strchr(repl, '!') != NULL) + && vim_strpbrk(repl, "!&;()") != NULL) { char_u *l; - l = vim_strsave_escaped(repl, (char_u *)"!"); + l = vim_strsave_escaped(repl, (char_u *)"!&;()"); if (l != NULL) { vim_free(repl); @@ -7328,7 +7331,8 @@ ex_equal(eap) ex_sleep(eap) exarg_T *eap; { - int n; + int n; + long len; if (cursor_valid()) { @@ -7336,7 +7340,15 @@ ex_sleep(eap) if (n >= 0) windgoto((int)n, curwin->w_wcol); } - do_sleep(eap->line2 * (*eap->arg == 'm' ? 1L : 1000L)); + + len = eap->line2; + switch (*eap->arg) + { + case 'm': break; + case NUL: len *= 1000L; break; + default: EMSG2(_(e_invarg2), eap->arg); return; + } + do_sleep(len); } /* diff --git a/src/fileio.c b/src/fileio.c --- a/src/fileio.c +++ b/src/fileio.c @@ -2649,7 +2649,10 @@ buf_write(buf, fname, sfname, start, end if (reset_changed && whole && buf == curbuf - && curbuf->b_ffname == NULL +#ifdef FEAT_QUICKFIX + && !bt_nofile(buf) +#endif + && buf->b_ffname == NULL && !filtering && vim_strchr(p_cpo, CPO_FNAMEW) != NULL) { diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -4326,17 +4326,18 @@ ex_gui(eap) /* * This is shared between Athena, Motif and GTK. */ -static char_u *gfp_buffer; - -static void gfp_setname __ARGS((char_u *fname)); +static void gfp_setname __ARGS((char_u *fname, void *cookie)); /* * Callback function for do_in_runtimepath(). */ static void -gfp_setname(fname) +gfp_setname(fname, cookie) char_u *fname; + void *cookie; { + char_u *gfp_buffer = cookie; + if (STRLEN(fname) >= MAXPATHL) *gfp_buffer = NUL; else @@ -4356,8 +4357,8 @@ gui_find_bitmap(name, buffer, ext) if (STRLEN(name) > MAXPATHL - 14) return FAIL; sprintf((char *)buffer, "bitmaps/%s.%s", name, ext); - gfp_buffer = buffer; - if (do_in_runtimepath(buffer, FALSE, gfp_setname) == FAIL || *buffer == NUL) + if (do_in_runtimepath(buffer, FALSE, gfp_setname, buffer) == FAIL + || *buffer == NUL) return FAIL; return OK; } diff --git a/src/gui_kde_x11.cc b/src/gui_kde_x11.cc --- a/src/gui_kde_x11.cc +++ b/src/gui_kde_x11.cc @@ -970,10 +970,20 @@ gui_mch_draw_part_cursor(int w, int h, g QPainter p(gui.w); p.setPen(color); p.fillRect( +#ifdef FEAT_RIGHTLEFT + /* vertical line should be on the right of current point */ + CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : +#endif FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h + 1, w, h - 2, QColor( color, color)); - p.drawRect(FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h + p.drawRect( +#ifdef FEAT_RIGHTLEFT + /* vertical line should be on the right of current point */ + CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w : +#endif + FILL_X(gui.col), + FILL_Y(gui.row) + gui.char_height - h + (int)p_linespace / 2, w, h - (int)p_linespace); }//}}} diff --git a/src/gui_w32.c b/src/gui_w32.c --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1794,7 +1794,7 @@ gui_mch_draw_string( #ifdef FEAT_MBYTE static WCHAR *unicodebuf = NULL; static int *unicodepdy = NULL; - int unibuflen = 0; + static int unibuflen = 0; int n = 0; #endif HPEN hpen, old_pen; @@ -1923,7 +1923,7 @@ gui_mch_draw_string( break; /* Check if the Unicode buffer exists and is big enough. Create it - * with the same lengt as the multi-byte string, the number of wide + * with the same length as the multi-byte string, the number of wide * characters is always equal or smaller. */ if ((enc_utf8 || (enc_codepage > 0 && (int)GetACP() != enc_codepage) diff --git a/src/macros.h b/src/macros.h --- a/src/macros.h +++ b/src/macros.h @@ -260,8 +260,10 @@ # define mb_ptr_adv(p) p += has_mbyte ? (*mb_ptr2len_check)(p) : 1 # define mb_ptr_back(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1 # define MB_COPY_CHAR(f, t) if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++ +# define MB_CHARLEN(p) mb_charlen(p) #else # define mb_ptr_adv(p) ++p # define mb_ptr_back(s, p) --p # define MB_COPY_CHAR(f, t) *t++ = *f++ +# define MB_CHARLEN(p) STRLEN(p) #endif diff --git a/src/mbyte.c b/src/mbyte.c --- a/src/mbyte.c +++ b/src/mbyte.c @@ -706,6 +706,11 @@ codepage_invalid: gui_mch_update_codec(); #endif +#ifdef FEAT_SYN_HL + /* Need to reload spell dictionaries */ + spell_reload(); +#endif + return NULL; } diff --git a/src/misc2.c b/src/misc2.c --- a/src/misc2.c +++ b/src/misc2.c @@ -5241,7 +5241,8 @@ qsort(base, elm_count, elm_size, cmp) } #endif -#if defined(FEAT_EX_EXTRA) || defined(FEAT_CMDL_COMPL) || defined(PROTO) +#if defined(FEAT_EX_EXTRA) || defined(FEAT_CMDL_COMPL) \ + || (defined(FEAT_SYN_HL) && defined(FEAT_MBYTE)) || defined(PROTO) /* * Sort an array of strings. */ diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -6065,6 +6065,18 @@ nv_brackets(cap) } #endif +#ifdef FEAT_SYN_HL + /* + * "[s", "[S", "]s" and "]S": move to next spell error. + */ + else if (cap->nchar == 's' || cap->nchar == 'S') + { + if (spell_move_to(cap->cmdchar == ']' ? FORWARD : BACKWARD, + cap->nchar == 's' ? TRUE : FALSE) == FAIL) + clearopbeep(cap->oap); + } +#endif + /* Not a valid cap->nchar. */ else clearopbeep(cap->oap); @@ -8493,6 +8505,7 @@ nv_put(cap) int regname = 0; void *reg1 = NULL, *reg2 = NULL; int empty = FALSE; + int was_visual = FALSE; #endif int dir; int flags = 0; @@ -8527,6 +8540,7 @@ nv_put(cap) * Need to save and restore the registers that the delete * overwrites if the old contents is being put. */ + was_visual = TRUE; regname = cap->oap->regname; # ifdef FEAT_CLIPBOARD adjust_clip_reg(®name); @@ -8587,8 +8601,17 @@ nv_put(cap) /* If a register was saved, put it back now. */ if (reg2 != NULL) put_register(regname, reg2); + + /* What to reselect with "gv"? Selecting the just put text seems to + * be the most useful, since the original text was removed. */ + if (was_visual) + { + curbuf->b_visual_start = curbuf->b_op_start; + curbuf->b_visual_end = curbuf->b_op_end; + } + /* When all lines were selected and deleted do_put() leaves an empty - * line that needs to delete now. */ + * line that needs to be deleted now. */ if (empty && *ml_get(curbuf->b_ml.ml_line_count) == NUL) ml_delete(curbuf->b_ml.ml_line_count, TRUE); #endif diff --git a/src/os_unix.c b/src/os_unix.c --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5177,6 +5177,8 @@ mch_expand_wildcards(num_pat, pat, num_f else if (!intick && vim_strchr((char_u *)" '", pat[i][j]) != NULL) { + /* Put quotes around special characters, but not when + * inside ``. */ *p++ = '"'; while (pat[i][j] != NUL && vim_strchr((char_u *)" '", pat[i][j]) != NULL) diff --git a/src/quickfix.c b/src/quickfix.c --- a/src/quickfix.c +++ b/src/quickfix.c @@ -2338,11 +2338,9 @@ ex_vimgrep(eap) char_u **fnames; char_u *s; char_u *p; - int i; int fi; qfline_T *prevp = NULL; long lnum; - garray_T ga; buf_T *buf; int duplicate_name = FALSE; int using_dummy; @@ -2404,12 +2402,7 @@ ex_vimgrep(eap) ; /* parse the list of arguments */ - if (get_arglist(&ga, p) == FAIL) - goto theend; - i = gen_expand_wildcards(ga.ga_len, (char_u **)ga.ga_data, - &fcount, &fnames, EW_FILE|EW_NOTFOUND); - ga_clear(&ga); - if (i == FAIL) + if (get_arglist_exp(p, &fcount, &fnames) == FAIL) goto theend; if (fcount == 0) { diff --git a/src/regexp.c b/src/regexp.c --- a/src/regexp.c +++ b/src/regexp.c @@ -738,65 +738,69 @@ reg_equi_class(c) { switch (c) { - case 'A': case 'À': case 'Á': case 'Â': - case 'Ã': case 'Ä': case 'Å': - regmbc('A'); regmbc('À'); regmbc('Á'); regmbc('Â'); - regmbc('Ã'); regmbc('Ä'); regmbc('Å'); + case 'A': case '\300': case '\301': case '\302': + case '\303': case '\304': case '\305': + regmbc('A'); regmbc('\300'); regmbc('\301'); + regmbc('\302'); regmbc('\303'); regmbc('\304'); + regmbc('\305'); return; - case 'C': case 'Ç': - regmbc('C'); regmbc('Ç'); + case 'C': case '\307': + regmbc('C'); regmbc('\307'); return; - case 'E': case 'È': case 'É': case 'Ê': case 'Ë': - regmbc('E'); regmbc('È'); regmbc('É'); regmbc('Ê'); - regmbc('Ë'); + case 'E': case '\310': case '\311': case '\312': case '\313': + regmbc('E'); regmbc('\310'); regmbc('\311'); + regmbc('\312'); regmbc('\313'); return; - case 'I': case 'Ì': case 'Í': case 'Î': case 'Ï': - regmbc('I'); regmbc('Ì'); regmbc('Í'); regmbc('Î'); - regmbc('Ï'); + case 'I': case '\314': case '\315': case '\316': case '\317': + regmbc('I'); regmbc('\314'); regmbc('\315'); + regmbc('\316'); regmbc('\317'); return; - case 'N': case 'Ñ': - regmbc('N'); regmbc('Ñ'); + case 'N': case '\321': + regmbc('N'); regmbc('\321'); return; - case 'O': case 'Ò': case 'Ó': case 'Ô': case 'Õ': case 'Ö': - regmbc('O'); regmbc('Ò'); regmbc('Ó'); regmbc('Ô'); - regmbc('Õ'); regmbc('Ö'); + case 'O': case '\322': case '\323': case '\324': case '\325': + case '\326': + regmbc('O'); regmbc('\322'); regmbc('\323'); + regmbc('\324'); regmbc('\325'); regmbc('\326'); return; - case 'U': case 'Ù': case 'Ú': case 'Û': case 'Ü': - regmbc('U'); regmbc('Ù'); regmbc('Ú'); regmbc('Û'); - regmbc('Ü'); + case 'U': case '\331': case '\332': case '\333': case '\334': + regmbc('U'); regmbc('\331'); regmbc('\332'); + regmbc('\333'); regmbc('\334'); return; - case 'Y': case 'Ý': - regmbc('Y'); regmbc('Ý'); + case 'Y': case '\335': + regmbc('Y'); regmbc('\335'); return; - case 'a': case 'à': case 'á': case 'â': - case 'ã': case 'ä': case 'å': - regmbc('a'); regmbc('à'); regmbc('á'); regmbc('â'); - regmbc('ã'); regmbc('ä'); regmbc('å'); + case 'a': case '\340': case '\341': case '\342': + case '\343': case '\344': case '\345': + regmbc('a'); regmbc('\340'); regmbc('\341'); + regmbc('\342'); regmbc('\343'); regmbc('\344'); + regmbc('\345'); return; - case 'c': case 'ç': - regmbc('c'); regmbc('ç'); + case 'c': case '\347': + regmbc('c'); regmbc('\347'); return; - case 'e': case 'è': case 'é': case 'ê': case 'ë': - regmbc('e'); regmbc('è'); regmbc('é'); regmbc('ê'); - regmbc('ë'); + case 'e': case '\350': case '\351': case '\352': case '\353': + regmbc('e'); regmbc('\350'); regmbc('\351'); + regmbc('\352'); regmbc('\353'); return; - case 'i': case 'ì': case 'í': case 'î': case 'ï': - regmbc('i'); regmbc('ì'); regmbc('í'); regmbc('î'); - regmbc('ï'); + case 'i': case '\354': case '\355': case '\356': case '\357': + regmbc('i'); regmbc('\354'); regmbc('\355'); + regmbc('\356'); regmbc('\357'); return; - case 'n': case 'ñ': - regmbc('n'); regmbc('ñ'); + case 'n': case '\361': + regmbc('n'); regmbc('\361'); return; - case 'o': case 'ò': case 'ó': case 'ô': case 'õ': case 'ö': - regmbc('o'); regmbc('ò'); regmbc('ó'); regmbc('ô'); - regmbc('õ'); regmbc('ö'); + case 'o': case '\362': case '\363': case '\364': case '\365': + case '\366': + regmbc('o'); regmbc('\362'); regmbc('\363'); + regmbc('\364'); regmbc('\365'); regmbc('\366'); return; - case 'u': case 'ù': case 'ú': case 'û': case 'ü': - regmbc('u'); regmbc('ù'); regmbc('ú'); regmbc('û'); - regmbc('ü'); + case 'u': case '\371': case '\372': case '\373': case '\374': + regmbc('u'); regmbc('\371'); regmbc('\372'); + regmbc('\373'); regmbc('\374'); return; - case 'y': case 'ý': case 'ÿ': - regmbc('y'); regmbc('ý'); regmbc('ÿ'); + case 'y': case '\375': case '\377': + regmbc('y'); regmbc('\375'); regmbc('\377'); return; } } diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -3605,7 +3605,7 @@ win_line(wp, lnum, startrow, endrow) iswordc = spell_iswordc(prev_ptr); if (iswordc && !prev_iswordc) { - word_end = v + spell_check(wp, prev_ptr, + word_end = v + spell_check(wp, line, prev_ptr, &spell_attr); /* In Insert mode only highlight a word that * doesn't touch the cursor. */ @@ -8002,7 +8002,7 @@ showmode() if (gui.in_use) { if (hangul_input_state_get()) - MSG_PUTS_ATTR(" ÇѱÛ", attr); /* HANGUL */ + MSG_PUTS_ATTR(" \307\321\261\333", attr); /* HANGUL */ } #endif #ifdef FEAT_INS_EXPAND diff --git a/src/spell.c b/src/spell.c --- a/src/spell.c +++ b/src/spell.c @@ -16,6 +16,11 @@ * "word" is either a "dword" or an "nword". */ +/* + * Why doesn't Vim use aspell/ispell/myspell/etc.? + * See ":help develop-spell". + */ + #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) # include /* for lseek(), must be before vim.h */ #endif @@ -32,8 +37,3860 @@ /* * Structure that is used to store the text from the language file. This - * avoids the need to allocate each individual word and copying it. It's - * allocated in big chunks for speed. + * avoids the need to allocate space for each individual word. It's allocated + * in big chunks for speed. + */ +#define SBLOCKSIZE 4096 /* default size of sb_data */ +typedef struct sblock_S sblock_T; +struct sblock_S +{ + sblock_T *sb_next; /* next block in list */ + char_u sb_data[1]; /* data, actually longer */ +}; + +/* Info from "REP" entries in ".aff" file used in af_rep. */ +typedef struct repentry_S +{ + char_u *re_from; + char_u *re_to; +} repentry_T; + +/* + * Structure to store affix info. + */ +typedef struct affitem_S affitem_T; +struct affitem_S +{ + affitem_T *ai_next; /* next affix with same ai_add[] or NULL */ + short_u ai_nr; /* affix number */ + char_u ai_combine; /* prefix combines with suffix */ + char_u ai_choplen; /* length of ai_chop in bytes */ + char_u ai_addlen; /* length of ai_add in bytes */ + char_u *ai_chop; /* text chopped off basic word (can be NULL) */ + char_u ai_add[1]; /* text added to basic word (actually longer) */ +}; + +/* Get affitem_T pointer from hashitem that uses ai_add */ +static affitem_T dumai; +#define HI2AI(hi) ((affitem_T *)((hi)->hi_key - (dumai.ai_add - (char_u *)&dumai))) + +/* + * Structure used to store words and other info for one language. + */ +typedef struct slang_S slang_T; +struct slang_S +{ + slang_T *sl_next; /* next language */ + char_u *sl_name; /* language name "en", "en.rare", "nl", etc. */ + hashtab_T sl_words; /* main word table, fword_T */ + int sl_prefcnt; /* number of prefix NRs */ + garray_T sl_preftab; /* list of hashtables to lookup prefixes */ + affitem_T *sl_prefzero; /* list of prefixes with zero add length */ + int sl_suffcnt; /* number of suffix NRs */ + garray_T sl_sufftab; /* list of hashtables to lookup suffixes */ + affitem_T *sl_suffzero; /* list of suffixes with zero add length */ + char_u *sl_try; /* "TRY" from .aff file */ + garray_T sl_rep; /* list of repentry_T entries from REP lines */ + char_u sl_regions[17]; /* table with up to 8 region names plus NUL */ + sblock_T *sl_block; /* list with allocated memory blocks */ + int sl_error; /* error while loading */ +}; + +static slang_T *first_lang = NULL; + +/* + * Structure to store an addition to a basic word. + */ +typedef struct addword_S addword_T; +struct addword_S +{ + addword_T *aw_next; /* next addition */ + char_u aw_flags; /* ADD_ flags */ + char_u aw_leadlen; /* length of lead in bytes */ + char_u aw_wordlen; /* length of aw_word in bytes */ + char_u aw_region; /* region for word with this addition */ + char_u aw_word[1]; /* text, actually longer: case-folded addition + plus, with ADD_KEEPCAP: keep-case addition */ +}; + +/* + * Structure to store a basic word. + */ +typedef struct fword_S fword_T; +struct fword_S +{ + fword_T *fw_next; /* same basic word with different caps */ + char_u fw_region; /* region bits */ + char_u fw_prefixcnt; /* number of prefix numbers */ + char_u fw_suffixcnt; /* number of suffix numbers */ + short_u fw_flags; /* BWF_ flags */ + void *fw_prefix; /* table with prefix numbers */ + void *fw_suffix; /* table with suffix numbers */ + addword_T *fw_adds; /* first addword_T entry */ + char_u fw_word[1]; /* actually longer: case folded word, or + keep-case word when (flags & BWF_KEEPCAP) */ +}; + +/* Get fword_T pointer from hashitem that uses fw_word */ +static fword_T dumfw; +#define HI2FWORD(hi) ((fword_T *)((hi)->hi_key - (dumfw.fw_word - (char_u *)&dumfw))) + +#define REGION_ALL 0xff + + +/* + * Structure used in "b_langp", filled from 'spelllang'. + */ +typedef struct langp_S +{ + slang_T *lp_slang; /* info for this language (NULL for last one) */ + int lp_region; /* bitmask for region or REGION_ALL */ +} langp_T; + +#define LANGP_ENTRY(ga, i) (((langp_T *)(ga).ga_data) + (i)) + +#define SP_OK 0 +#define SP_BAD 1 +#define SP_RARE 2 +#define SP_LOCAL 3 + +/* flags used for basic words in the spell file */ +#define BWF_VALID 0x01 /* word is valid without additions */ +#define BWF_REGION 0x02 /* region byte follows */ +#define BWF_ONECAP 0x04 /* first letter must be capital */ +#define BWF_SUFFIX 0x08 /* has suffix NR list */ +#define BWF_SECOND 0x10 /* second flags byte follows */ + +#define BWF_ADDS 0x0100 /* there are additions */ +#define BWF_PREFIX 0x0200 /* has prefix NR list */ +#define BWF_ALLCAP 0x0400 /* all letters must be capital (not used + for single-letter words) */ +#define BWF_KEEPCAP 0x0800 /* Keep case as-is */ + +/* flags used for addition in the spell file */ +#define ADD_REGION 0x02 /* region byte follows */ +#define ADD_ONECAP 0x04 /* first letter must be capital */ +#define ADD_ALLCAP 0x40 /* all letters must be capital (not used + for single-letter words) */ +#define ADD_KEEPCAP 0x80 /* fixed case */ + +/* Translate ADD_ flags to BWF_ flags. + * (Needed to keep ADD_ flags in one byte.) */ +#define ADD2BWF(x) (((x) & 0x0f) | (((x) & 0xf0) << 4)) + +#define VIMSPELLMAGIC "VIMspell01" /* string at start of Vim spell file */ +#define VIMSPELLMAGICL 10 + +/* + * Structure to store info for word matching. + */ +typedef struct matchinf_S +{ + langp_T *mi_lp; /* info for language and region */ + slang_T *mi_slang; /* info for the language */ + char_u *mi_line; /* start of line containing word */ + char_u *mi_word; /* start of word being checked */ + char_u *mi_end; /* first non-word char after mi_word */ + char_u *mi_wend; /* end of matching word (is "mi_end" + * or further) */ + char_u *mi_cword; /* word to check, can be "mi_fword" */ + char_u mi_fword[MAXWLEN + 1]; /* "mi_word" to "mi_end" case-folded */ + int mi_faddlen; /* length of valid bytes in "mi_fadd" */ + char_u *mi_faddp; /* next char to be added to "mi_fadd" */ + char_u mi_fadd[MAXWLEN + 1]; /* "mi_end" and further case-folded */ + int mi_result; /* result so far: SP_BAD, SP_OK, etc. */ + int mi_capflags; /* BWF_ONECAP BWF_ALLCAP BWF_KEEPCAP */ +} matchinf_T; + +static int word_match __ARGS((matchinf_T *mip)); +static int check_adds __ARGS((matchinf_T *mip, fword_T *fw, int req_pref, int req_suf)); +static int supports_afffix __ARGS((int cnt, void *afffix, int afffixcnt, int nr)); +static int prefix_match __ARGS((matchinf_T *mip)); +static int suffix_match __ARGS((matchinf_T *mip)); +static int match_caps __ARGS((int flags, char_u *caseword, matchinf_T *mip, char_u *cword, char_u *end)); +static slang_T *slang_alloc __ARGS((char_u *lang)); +static void slang_free __ARGS((slang_T *lp)); +static slang_T *spell_load_lang __ARGS((char_u *lang)); +static void spell_load_file __ARGS((char_u *fname, void *cookie)); +static int spell_load_affixes __ARGS((FILE *fd, slang_T *lp, int *bl_usedp, int affm, void **affp)); +static void *getroom __ARGS((slang_T *lp, int *bl_used, int len)); +static int find_region __ARGS((char_u *rp, char_u *region)); +static int captype __ARGS((char_u *word, char_u *end)); + +/* + * Main spell-checking function. + * "ptr" points to the start of a word. + * "*attrp" is set to the attributes for a badly spelled word. For a non-word + * or when it's OK it remains unchanged. + * This must only be called when 'spelllang' is not empty. + * Returns the length of the word in bytes, also when it's OK, so that the + * caller can skip over the word. + */ + int +spell_check(wp, line, ptr, attrp) + win_T *wp; /* current window */ + char_u *line; /* start of line where "ptr" points into */ + char_u *ptr; + int *attrp; +{ + matchinf_T mi; /* Most things are put in "mi" so that it can + be passed to functions quickly. */ + + /* Find the end of the word. We already know that *ptr is a word char. */ + mi.mi_word = ptr; + mi.mi_end = ptr; + do + { + mb_ptr_adv(mi.mi_end); + } while (*mi.mi_end != NUL && spell_iswordc(mi.mi_end)); + + /* A word starting with a number is always OK. */ + if (*ptr >= '0' && *ptr <= '9') + return (int)(mi.mi_end - ptr); + + /* Make case-folded copy of the Word. Compute its hash value. */ + (void)str_foldcase(ptr, mi.mi_end - ptr, mi.mi_fword, MAXWLEN + 1); + mi.mi_cword = mi.mi_fword; + + /* The word is bad unless we find it in the dictionary. */ + mi.mi_result = SP_BAD; + mi.mi_wend = mi.mi_end; + mi.mi_faddp = mi.mi_end; + mi.mi_faddlen = 0; + mi.mi_capflags = captype(ptr, mi.mi_end); + mi.mi_line = line; + + /* + * Loop over the languages specified in 'spelllang'. + * We check them all, because a matching word may have additions that are + * longer than an already found matching word. + */ + for (mi.mi_lp = LANGP_ENTRY(wp->w_buffer->b_langp, 0); + mi.mi_lp->lp_slang != NULL; ++mi.mi_lp) + { + /* + * Check for a matching word. + * If not found or wrong region try removing prefixes (and then + * suffixes). + * If still not found or wrong region try removing suffixes. + */ + mi.mi_slang = mi.mi_lp->lp_slang; + if (!word_match(&mi) || mi.mi_result != SP_OK) + if (!prefix_match(&mi) || mi.mi_result != SP_OK) + suffix_match(&mi); + } + + if (mi.mi_result != SP_OK) + { + if (mi.mi_result == SP_BAD) + *attrp = highlight_attr[HLF_SPB]; + else if (mi.mi_result == SP_RARE) + *attrp = highlight_attr[HLF_SPR]; + else + *attrp = highlight_attr[HLF_SPL]; + } + + return (int)(mi.mi_wend - ptr); +} + +/* + * Check if the word "mip->mi_cword" matches. + */ + static int +word_match(mip) + matchinf_T *mip; +{ + hash_T fhash = hash_hash(mip->mi_cword); + hashitem_T *hi; + fword_T *fw; + int valid = FALSE; + + hi = hash_lookup(&mip->mi_slang->sl_words, mip->mi_cword, fhash); + if (HASHITEM_EMPTY(hi)) + return FALSE; + + /* + * Find a basic word for which the case of word "cword" is correct. + * If it is, check additions and use the longest one. + */ + for (fw = HI2FWORD(hi); fw != NULL; fw = fw->fw_next) + if (match_caps(fw->fw_flags, fw->fw_word, mip, + mip->mi_word, mip->mi_end)) + valid |= check_adds(mip, fw, -1, -1); + + return valid; +} + +/* + * Check a matching basic word for additions. + * Return TRUE if we have a valid match. + */ + static int +check_adds(mip, fw, req_pref, req_suf) + matchinf_T *mip; + fword_T *fw; + int req_pref; /* required prefix nr, -1 if none */ + int req_suf; /* required suffix nr, -1 if none */ +{ + int valid = FALSE; + addword_T *aw; + char_u *p; + int addlen; + int fl; + + /* A word may be valid without additions. */ + if ((fw->fw_flags & BWF_VALID) + && (req_pref < 0 || supports_afffix(mip->mi_slang->sl_prefcnt, + fw->fw_prefix, fw->fw_prefixcnt, req_pref)) + && (req_suf < 0 || supports_afffix(mip->mi_slang->sl_suffcnt, + fw->fw_suffix, fw->fw_suffixcnt, req_suf))) + { + valid = TRUE; + if (mip->mi_result != SP_OK) + { + if ((fw->fw_region & mip->mi_lp->lp_region) == 0) + mip->mi_result = SP_LOCAL; + else + mip->mi_result = SP_OK; + } + } + + /* + * Check additions, both before and after the word. + * This may make the word longer, thus we also need to check + * when we already found a matching word. + */ + for (aw = fw->fw_adds; aw != NULL; aw = aw->aw_next) + { + if (aw->aw_leadlen > 0) + { + /* There is a leader, verify that it matches. */ + if (aw->aw_leadlen > mip->mi_word - mip->mi_line + || STRNCMP(mip->mi_word - aw->aw_leadlen, + aw->aw_word, aw->aw_leadlen) != 0) + continue; + if (mip->mi_word - aw->aw_leadlen > mip->mi_line) + { + /* There must not be a word character just before the + * leader. */ + p = mip->mi_word - aw->aw_leadlen; + mb_ptr_back(mip->mi_line, p); + if (spell_iswordc(p)) + continue; + } + /* Leader matches. Addition is rest of "aw_word". */ + p = aw->aw_word + aw->aw_leadlen; + } + else + /* No leader, use whole of "aw_word" for addition. */ + p = aw->aw_word; + + addlen = aw->aw_wordlen - aw->aw_leadlen; + if (addlen > 0) + { + /* Check for matching addition and no word character after it. + * First make sure we have enough case-folded chars to compare + * with. */ + while (mip->mi_faddlen <= addlen) + { + if (*mip->mi_faddp == NUL) + { + mip->mi_fadd[mip->mi_faddlen] = NUL; + break; + } +#ifdef FEAT_MBYTE + fl = (*mb_ptr2len_check)(mip->mi_faddp); +#else + fl = 1; +#endif + (void)str_foldcase(mip->mi_faddp, fl, + mip->mi_fadd + mip->mi_faddlen, + MAXWLEN - mip->mi_faddlen); + mip->mi_faddp += fl; + mip->mi_faddlen += STRLEN(mip->mi_fadd + mip->mi_faddlen); + } + + if (STRNCMP(mip->mi_fadd, p, addlen) != 0 + || (mip->mi_fadd[addlen] != NUL + && spell_iswordc(mip->mi_fadd + addlen))) + continue; + + /* Compute the length in the original word, before case folding. */ +#ifdef FEAT_MBYTE + if (has_mbyte) + { + int l; + + p = mip->mi_end; + for (l = 0; l < addlen; + l += (*mb_ptr2len_check)(mip->mi_fadd + l)) + mb_ptr_adv(p); + addlen = p - mip->mi_end; + } +#endif + + /* Check case of the addition. */ + if (!match_caps(ADD2BWF(aw->aw_flags), + aw->aw_word + aw->aw_wordlen + 1, mip, + mip->mi_end, mip->mi_end + addlen)) + continue; + } + + /* Match! Use the new length if it's longer. */ + if (mip->mi_wend < mip->mi_end + addlen) + mip->mi_wend = mip->mi_end + addlen; + + valid = TRUE; + if (mip->mi_result != SP_OK) + { + if ((aw->aw_region & mip->mi_lp->lp_region) == 0) + mip->mi_result = SP_LOCAL; + else + mip->mi_result = SP_OK; + } + } + + return valid; +} + +/* + * Return TRUE if word "fw" supports afffix "nr". + */ + static int +supports_afffix(cnt, afffix, afffixcnt, nr) + int cnt; + void *afffix; + int afffixcnt; + int nr; +{ + char_u *pc; + short_u *ps; + int i; + + if (cnt <= 256) + { + /* char_u affix numbers */ + pc = afffix; + for (i = afffixcnt; --i >= 0; ) + if (*pc++ == nr) + return TRUE; + } + else + { + /* short_u affix numbers */ + ps = afffix; + for (i = afffixcnt; --i >= 0; ) + if (*ps++ == nr) + return TRUE; + } + return FALSE; +} + +/* + * Try finding a match for "mip->mi_cword" by removing prefixes. + */ + static int +prefix_match(mip) + matchinf_T *mip; +{ + int len = 0; + int charlen = 0; + int cc; + affitem_T *ai; + char_u pword[MAXWLEN + 1]; + fword_T *fw; + hashtab_T *ht; + hashitem_T *hi; + int i; + int found_valid = FALSE; + int cstart_charlen = 0; + char_u *cstart = mip->mi_word; + int capflags_save = mip->mi_capflags; + char_u *p; + + /* + * Check for prefixes with different character lengths. + * Start with zero length (only chop off). + */ + for (charlen = 0; charlen <= mip->mi_slang->sl_preftab.ga_len; ++charlen) + { + if (charlen > 0) + { +#ifdef FEAT_MBYTE + if (has_mbyte) + len += mb_ptr2len_check(mip->mi_cword + len); + else +#endif + len += 1; + } + if (mip->mi_cword[len] == NUL) /* end of word, no prefix possible */ + break; + + if (charlen == 0) + ai = mip->mi_slang->sl_prefzero; + else + { + /* Get pointer to hashtab for prefix of this many chars. */ + ht = ((hashtab_T *)mip->mi_slang->sl_preftab.ga_data) + charlen - 1; + if (ht->ht_used == 0) + continue; + + cc = mip->mi_cword[len]; + mip->mi_cword[len] = NUL; + hi = hash_find(ht, mip->mi_cword); + mip->mi_cword[len] = cc; + + if (HASHITEM_EMPTY(hi)) + ai = NULL; + else + ai = HI2AI(hi); + } + + /* Loop over all matching prefixes. */ + for ( ; ai != NULL; ai = ai->ai_next) + { + /* Create the basic word by removing the prefix and adding the + * chop string. */ + mch_memmove(pword, ai->ai_chop, ai->ai_choplen); + STRCPY(pword + ai->ai_choplen, mip->mi_cword + ai->ai_addlen); + + /* Adjust the word start for case checks, we only check the + * part after the prefix. */ + while (cstart_charlen < charlen) + { + mb_ptr_adv(cstart); + ++cstart_charlen; + } + + /* Removing the prefix may change the caps, e.g. for + * "deAlf" removing "de" makes it ONECAP. */ + mip->mi_capflags = captype(cstart, mip->mi_end); + + /* Find the basic word. */ + hi = hash_find(&mip->mi_slang->sl_words, pword); + if (!HASHITEM_EMPTY(hi)) + { + /* Check if the word supports this prefix. */ + for (fw = HI2FWORD(hi); fw != NULL; fw = fw->fw_next) + if (match_caps(fw->fw_flags, fw->fw_word, mip, + cstart, mip->mi_end)) + found_valid |= check_adds(mip, fw, ai->ai_nr, -1); + + if (found_valid && mip->mi_result == SP_OK) + { + /* Found a valid word, no need to try other suffixes. */ + mip->mi_capflags = capflags_save; + return TRUE; + } + } + + /* No matching basic word without prefix. When combining is + * allowed try with suffixes. */ + if (ai->ai_combine) + { + /* Pass the word with prefix removed to suffix_match(). */ + mip->mi_cword = pword; + p = mip->mi_word; + mip->mi_word = cstart; + i = suffix_match(mip); + mip->mi_cword = mip->mi_fword; + mip->mi_word = p; + if (i) + { + mip->mi_capflags = capflags_save; + return TRUE; + } + } + } + } + + mip->mi_capflags = capflags_save; + return FALSE; +} + +/* + * Try finding a match for "mip->mi_cword" by removing suffixes. + */ + static int +suffix_match(mip) + matchinf_T *mip; +{ + char_u *sufp; + int charlen; + affitem_T *ai; + char_u pword[MAXWLEN + 1]; + fword_T *fw; + hashtab_T *ht; + hashitem_T *hi; + int tlen; + int cend_charlen = 0; + char_u *cend = mip->mi_end; + int found_valid = FALSE; + int capflags_save = mip->mi_capflags; + + /* + * Try suffixes of different length, starting with an empty suffix (chop + * only, thus adds something). + * Stop checking if there are no suffixes with so many characters. + */ + sufp = mip->mi_cword + STRLEN(mip->mi_cword); + for (charlen = 0; charlen <= mip->mi_slang->sl_sufftab.ga_len; ++charlen) + { + /* Move the pointer to the possible suffix back one character, unless + * doing the first round (empty suffix). */ + if (charlen > 0) + { + mb_ptr_back(mip->mi_cword, sufp); + if (sufp <= mip->mi_cword) /* start of word, no suffix possible */ + break; + } + + if (charlen == 0) + ai = mip->mi_slang->sl_suffzero; + else + { + /* Get pointer to hashtab for suffix of this many chars. */ + ht = ((hashtab_T *)mip->mi_slang->sl_sufftab.ga_data) + charlen - 1; + if (ht->ht_used == 0) + continue; + + hi = hash_find(ht, sufp); + if (HASHITEM_EMPTY(hi)) + ai = NULL; + else + ai = HI2AI(hi); + } + + if (ai != NULL) + { + /* Found a list of matching suffixes. Now check that there is one + * we can use. */ + tlen = sufp - mip->mi_cword; /* length of word without suffix */ + mch_memmove(pword, mip->mi_cword, tlen); + + for ( ; ai != NULL; ai = ai->ai_next) + { + /* Found a matching suffix. Create the basic word by removing + * the suffix and adding the chop string. */ + if (ai->ai_choplen == 0) + pword[tlen] = NUL; + else + mch_memmove(pword + tlen, ai->ai_chop, ai->ai_choplen + 1); + + /* Find the basic word. */ + hi = hash_find(&mip->mi_slang->sl_words, pword); + if (!HASHITEM_EMPTY(hi)) + { + /* Adjust the end for case checks, we only check the part + * before the suffix. */ + while (cend_charlen < charlen) + { + mb_ptr_back(mip->mi_word, cend); + ++cend_charlen; + } + + /* Removing the suffix may change the caps, e.g. for + * "UFOs" removing 's' makes it ALLCAP. */ + mip->mi_capflags = captype(mip->mi_word, cend); + + /* Check if the word supports this suffix. */ + for (fw = HI2FWORD(hi); fw != NULL; fw = fw->fw_next) + if (match_caps(fw->fw_flags, fw->fw_word, mip, + mip->mi_word, cend)) + found_valid |= check_adds(mip, fw, -1, ai->ai_nr); + + if (found_valid && mip->mi_result == SP_OK) + { + /* Found a valid word, no need to try other suffixes. */ + mip->mi_capflags = capflags_save; + return TRUE; + } + } + } + } + } + + mip->mi_capflags = capflags_save; + return FALSE; +} + +/* + * Return TRUE if case of "cword" meets the requirements of case flags + * "flags". + */ + static int +match_caps(flags, caseword, mip, cword, end) + int flags; /* flags required by basic word or addition */ + char_u *caseword; /* word with case as required */ + matchinf_T *mip; + char_u *cword; /* word to compare against "caseword" */ + char_u *end; /* end of "cword" */ +{ + char_u *p; + int c; + int len; + int capflags = mip->mi_capflags; /* flags of checked word */ + int past_second; + + if ((capflags & BWF_KEEPCAP) == 0 && end > mip->mi_end) + { + /* If "end" is past "mip->mi_end" we need to check the characters + * after the basic word. */ +#ifdef FEAT_MBYTE + past_second = (mip->mi_word + (*mb_ptr2len_check)(mip->mi_word) + < mip->mi_end); +#else + past_second = mip->mi_word + 1 < mip->mi_end; +#endif + for (p = mip->mi_end; p < end; ) + { + if (!spell_iswordc(p)) + mb_ptr_adv(p); + else + { +#ifdef FEAT_MBYTE + if (has_mbyte) + c = mb_ptr2char_adv(&p); + else +#endif + c = *p++; + if (MB_ISUPPER(c)) + { + if (capflags == 0 || (capflags & BWF_ONECAP)) + { + capflags = BWF_KEEPCAP; /* lU or UlU */ + break; + } + } + else + { + if (capflags & BWF_ALLCAP) + { + if (past_second) + { + capflags = BWF_KEEPCAP; /* UUl */ + break; + } + capflags = BWF_ONECAP; /* Uu */ + } + } + past_second = TRUE; + } + } + } + + if (capflags == BWF_ALLCAP) + return TRUE; /* All caps is always OK. */ + + if (flags & BWF_KEEPCAP) + { + len = STRLEN(caseword); + return (len == end - cword && STRNCMP(caseword, cword, len) == 0); + } + + if (flags & BWF_ALLCAP) + return FALSE; /* need ALLCAP, already checked above */ + + if (flags & BWF_ONECAP) + return capflags == BWF_ONECAP; + + return capflags != BWF_KEEPCAP; /* no case check, only KEEPCAP is bad */ +} + +/* + * Move to next spell error. + * Return OK if found, FAIL otherwise. + */ + int +spell_move_to(dir, allwords) + int dir; /* FORWARD or BACKWARD */ + int allwords; /* TRUE for "[s" and "]s" */ +{ + pos_T pos; + char_u *line; + char_u *p; + int wc; + int nwc; + int attr = 0; + int len; + + if (!curwin->w_p_spell || *curwin->w_buffer->b_p_spl == NUL) + { + EMSG(_("E756: Spell checking not enabled")); + return FAIL; + } + + /* TODO: moving backwards */ + + /* Start looking for bad word at the start of the line, because we can't + * start halfway a word and know where it ends. */ + pos = curwin->w_cursor; + pos.col = 0; + wc = FALSE; + + while (!got_int) + { + line = ml_get(pos.lnum); + p = line + pos.col; + while (*p != NUL) + { + nwc = spell_iswordc(p); + if (!wc && nwc) + { + /* start of word */ + /* TODO: check for bad word attr */ + len = spell_check(curwin, line, p, &attr); + if (attr != 0) + { + if (curwin->w_cursor.lnum < pos.lnum + || (curwin->w_cursor.lnum == pos.lnum + && curwin->w_cursor.col < (colnr_T)(p - line))) + { + curwin->w_cursor.lnum = pos.lnum; + curwin->w_cursor.col = p - line; + return OK; + } + attr = 0; /* bad word is before or at cursor */ + } + p += len; + if (*p == NUL) + break; + nwc = FALSE; + } + + /* advance to next character */ + mb_ptr_adv(p); + wc = nwc; + } + + /* Advance to next line. */ + if (pos.lnum == curbuf->b_ml.ml_line_count) + return FAIL; + ++pos.lnum; + pos.col = 0; + wc = FALSE; + + line_breakcheck(); + } + + return FAIL; /* interrupted */ +} + +/* + * Load word list for "lang" from a Vim spell file. + * "lang" must be the language without the region: "en" or "en-rare". + */ + static slang_T * +spell_load_lang(lang) + char_u *lang; +{ + slang_T *lp; + char_u fname_enc[80]; + char_u *p; + int r; + + lp = slang_alloc(lang); + if (lp != NULL) + { + /* Find all spell files for "lang" in 'runtimepath' and load them. + * Use 'encoding', except that we use "latin1" for "latin9". */ +#ifdef FEAT_MBYTE + if (STRLEN(p_enc) < 60 && STRCMP(p_enc, "iso-8859-15") != 0) + p = p_enc; + else +#endif + p = (char_u *)"latin1"; + sprintf((char *)fname_enc, "spell/%s.%s.spl", lang, p); + + r = do_in_runtimepath(fname_enc, TRUE, spell_load_file, lp); + if (r == FAIL || lp->sl_error) + { + slang_free(lp); + lp = NULL; + if (r == FAIL) + smsg((char_u *)_("Warning: Cannot find word list \"%s\""), + fname_enc + 6); + } + else + { + lp->sl_next = first_lang; + first_lang = lp; + } + } + + return lp; +} + +/* + * Allocate a new slang_T. + * Caller must fill "sl_next". + */ + static slang_T * +slang_alloc(lang) + char_u *lang; +{ + slang_T *lp; + + lp = (slang_T *)alloc(sizeof(slang_T)); + if (lp != NULL) + { + lp->sl_name = vim_strsave(lang); + hash_init(&lp->sl_words); + ga_init2(&lp->sl_preftab, sizeof(hashtab_T), 4); + ga_init2(&lp->sl_sufftab, sizeof(hashtab_T), 4); + lp->sl_prefzero = NULL; + lp->sl_suffzero = NULL; + lp->sl_try = NULL; + ga_init2(&lp->sl_rep, sizeof(repentry_T), 4); + lp->sl_regions[0] = NUL; + lp->sl_block = NULL; + lp->sl_error = FALSE; + } + return lp; +} + +/* + * Free the contents of an slang_T and the structure itself. + */ + static void +slang_free(lp) + slang_T *lp; +{ + sblock_T *sp; + int i; + + vim_free(lp->sl_name); + hash_clear(&lp->sl_words); + for (i = 0; i < lp->sl_preftab.ga_len; ++i) + hash_clear(((hashtab_T *)lp->sl_preftab.ga_data) + i); + ga_clear(&lp->sl_preftab); + for (i = 0; i < lp->sl_sufftab.ga_len; ++i) + hash_clear(((hashtab_T *)lp->sl_sufftab.ga_data) + i); + ga_clear(&lp->sl_sufftab); + ga_clear(&lp->sl_rep); + vim_free(lp->sl_try); + while (lp->sl_block != NULL) + { + sp = lp->sl_block; + lp->sl_block = sp->sb_next; + vim_free(sp); + } + vim_free(lp); +} + +/* + * Load one spell file into an slang_T. + * Invoked through do_in_runtimepath(). + */ + static void +spell_load_file(fname, cookie) + char_u *fname; + void *cookie; /* points to the slang_T to be filled */ +{ + slang_T *lp = cookie; + FILE *fd; + char_u buf[MAXWLEN + 1]; + char_u cbuf[MAXWLEN + 1]; + char_u fbuf[MAXWLEN + 1]; + char_u *p; + int itm; + int i; + int affcount; + int affnr; + int affflags; + int affitemcnt; + int bl_used = SBLOCKSIZE; + int widx; + int prefm; /* 1 if <= 256 prefixes, sizeof(short_u) otherw. */ + int suffm; /* 1 if <= 256 suffixes, sizeof(short_u) otherw. */ + int wlen; + int flags; + affitem_T *ai, *ai2, **aip; + int round; + char_u *save_sourcing_name = sourcing_name; + linenr_T save_sourcing_lnum = sourcing_lnum; + int cnt; + int choplen; + int addlen; + int leadlen; + int wordcount; + fword_T *fw, *fw2; + garray_T *gap; + hashtab_T *ht; + hashitem_T *hi; + hash_T hash; + int adds; + addword_T *aw; + int flen; + + fd = fopen((char *)fname, "r"); + if (fd == NULL) + { + EMSG2(_(e_notopen), fname); + goto errorend; + } + + /* Set sourcing_name, so that error messages mention the file name. */ + sourcing_name = fname; + sourcing_lnum = 0; + + /*

: ... */ + for (i = 0; i < VIMSPELLMAGICL; ++i) + buf[i] = getc(fd); /* */ + if (STRNCMP(buf, VIMSPELLMAGIC, VIMSPELLMAGICL) != 0) + { + EMSG(_("E757: Wrong file ID in spell file")); + goto errorend; + } + + cnt = getc(fd); /* */ + if (cnt == EOF) + { +truncerr: + EMSG(_("E758: Truncated spell file")); + goto errorend; + } + if (cnt > 8) + { +formerr: + EMSG(_("E759: Format error in spell file")); + goto errorend; + } + for (i = 0; i < cnt; ++i) + { + lp->sl_regions[i * 2] = getc(fd); /* */ + lp->sl_regions[i * 2 + 1] = getc(fd); + } + lp->sl_regions[cnt * 2] = NUL; + + /* round 1: : ... + * round 2: : ... */ + for (round = 1; round <= 2; ++round) + { + affcount = (getc(fd) << 8) + getc(fd); /* */ + if (affcount < 0) + goto truncerr; + if (round == 1) + { + gap = &lp->sl_preftab; + aip = &lp->sl_prefzero; + lp->sl_prefcnt = affcount; + prefm = affcount > 256 ? sizeof(short_u) : 1; + } + else + { + gap = &lp->sl_sufftab; + aip = &lp->sl_suffzero; + lp->sl_suffcnt = affcount; + suffm = affcount > 256 ? sizeof(short_u) : 1; + } + + i = (getc(fd) << 8) + getc(fd); /* */ + /* afftotcnt is not used */ + + /* + * For each affix NR there can be several affixes. + */ + for (affnr = 0; affnr < affcount; ++affnr) + { + /* : ... */ + affflags = getc(fd); /* */ + if (affflags == EOF) + goto truncerr; + affitemcnt = (getc(fd) << 8) + getc(fd); /* */ + if (affitemcnt < 0) + goto truncerr; + for (itm = 0; itm < affitemcnt; ++itm) + { + /* : */ + choplen = getc(fd); /* */ + if (choplen == EOF) + goto truncerr; + if (choplen >= MAXWLEN) + goto formerr; + for (i = 0; i < choplen; ++i) /* */ + buf[i] = getc(fd); + buf[i] = NUL; + addlen = getc(fd); /* */ + if (addlen == EOF) + goto truncerr; + /* Get room to store the affitem_T, chop and add strings. */ + p = (char_u *)getroom(lp, &bl_used, + sizeof(affitem_T) + choplen + addlen + 1); + if (p == NULL) + goto errorend; + + ai = (affitem_T *)p; + ai->ai_nr = affnr; + ai->ai_combine = affflags; + ai->ai_choplen = choplen; + ai->ai_addlen = addlen; + + p += sizeof(affitem_T) + addlen; + ai->ai_chop = p; + STRCPY(p, buf); + + p = ai->ai_add; + for (i = 0; i < addlen; ++i) /* */ + p[i] = getc(fd); + p[i] = NUL; + + /* + * Add the affix to a hashtable. Which one depends on the + * length of the added string in characters. + */ +#ifdef FEAT_MBYTE + /* Change "addlen" from length in bytes to length in chars. */ + if (has_mbyte) + addlen = mb_charlen(p); +#endif + if (addlen == 0) + { + /* Link in list of zero length affixes. */ + ai->ai_next = *aip; + *aip = ai; + } + else + { + if (gap->ga_len < addlen) + { + /* Longer affix, need more hashtables. */ + if (ga_grow(gap, addlen - gap->ga_len) == FAIL) + goto errorend; + + /* Re-allocating ga_data means that an ht_array + * pointing to ht_smallarray becomes invalid. We can + * recognize this: ht_mask is at its init value. */ + for (i = 0; i < gap->ga_len; ++i) + { + ht = ((hashtab_T *)gap->ga_data) + i; + if (ht->ht_mask == HT_INIT_SIZE - 1) + ht->ht_array = ht->ht_smallarray; + } + + /* Init the newly used hashtable(s). */ + while (gap->ga_len < addlen) + { + hash_init(((hashtab_T *)gap->ga_data) + + gap->ga_len); + ++gap->ga_len; + } + } + ht = ((hashtab_T *)gap->ga_data) + addlen - 1; + hash = hash_hash(p); + hi = hash_lookup(ht, p, hash); + if (HASHITEM_EMPTY(hi)) + { + /* First affix with this "ai_add", add to hashtable. */ + hash_add_item(ht, hi, p, hash); + ai->ai_next = NULL; + } + else + { + /* There already is an affix with this "ai_add", link + * in the list. */ + ai2 = HI2AI(hi); + ai->ai_next = ai2->ai_next; + ai2->ai_next = ai; + } + } + } + } + } + + /* : ... */ + /* TODO, just skip this for now */ + i = (getc(fd) << 24) + (getc(fd) << 16) + (getc(fd) << 8) + getc(fd); + while (i-- > 0) + if (getc(fd) == EOF) /* */ + goto truncerr; + + /* : ... */ /* */ + wordcount = (getc(fd) << 24) + (getc(fd) << 16) + (getc(fd) << 8) + + getc(fd); + if (wordcount < 0) + goto truncerr; + + /* Init hashtable for this number of words, so that it doesn't need to + * reallocate the table halfway. */ + hash_lock_size(&lp->sl_words, wordcount); + + for (widx = 0; ; ++widx) + { + /* : [] + * [ ] + * [ ...] (prefixes) + * [ ...] (suffixes) + * [] + * [ ...] + */ + /* Use bytes from the previous word. */ + wlen = getc(fd); /* */ + if (wlen == EOF) + { + if (widx >= wordcount) /* normal way to end the file */ + break; + goto truncerr; + } + + /* Read further word bytes until one below 0x20, that must be the + * flags. Keep this fast! */ + for (;;) + { + if ((buf[wlen] = getc(fd)) < 0x20) /* */ + break; + if (++wlen == MAXWLEN) + goto formerr; + } + flags = buf[wlen]; /* */ + buf[wlen] = NUL; + + /* Get more flags if they're there. */ + if (flags & BWF_SECOND) + flags += getc(fd) << 8; /* */ + + if (flags & BWF_KEEPCAP) + { + /* Read and first, its length may differ from + * the case-folded word. Note: this should only happen after the + * basic word! */ + wlen = getc(fd); + if (wlen == EOF) + goto truncerr; + for (i = 0; i < wlen; ++i) + cbuf[i] = getc(fd); + cbuf[i] = NUL; + } + + /* Find room to store the word in a fword_T. */ + fw = (fword_T *)getroom(lp, &bl_used, (int)sizeof(fword_T) + wlen); + if (fw == NULL) + goto errorend; + mch_memmove(fw->fw_word, (flags & BWF_KEEPCAP) ? cbuf : buf, wlen + 1); + fw->fw_flags = flags; + + hash = hash_hash(buf); + hi = hash_lookup(&lp->sl_words, buf, hash); + if (HASHITEM_EMPTY(hi)) + { + if (hash_add_item(&lp->sl_words, hi, fw->fw_word, hash) == FAIL) + goto errorend; + fw->fw_next = NULL; + } + else + { + /* Already have this basic word in the hashtable, this one will + * have different case flags. */ + fw2 = HI2FWORD(hi); + fw->fw_next = fw2->fw_next; + fw2->fw_next = fw; + --widx; /* don't count this one */ + } + + /* Optional prefixes and suffixes. */ + if (flags & BWF_PREFIX) + fw->fw_prefixcnt = spell_load_affixes(fd, lp, &bl_used, + prefm, &fw->fw_prefix); + else + fw->fw_prefixcnt = 0; + if (flags & BWF_SUFFIX) + fw->fw_suffixcnt = spell_load_affixes(fd, lp, &bl_used, + suffm, &fw->fw_suffix); + else + fw->fw_suffixcnt = 0; + + if (flags & BWF_REGION) + fw->fw_region = getc(fd); /* */ + else + fw->fw_region = REGION_ALL; + + fw->fw_adds = NULL; + if (flags & BWF_ADDS) + { + adds = (getc(fd) << 8) + getc(fd); /* */ + + while (--adds >= 0) + { + /* : [ ] + * [] */ + flags = getc(fd); /* */ + addlen = getc(fd); /* */ + if (addlen == EOF) + goto truncerr; + if (addlen >= MAXWLEN) + goto formerr; + + if (addlen > 0) + { + leadlen = getc(fd); /* */ + for (i = 0; i < addlen; ++i) /* */ + cbuf[i] = getc(fd); + cbuf[i] = NUL; + } + else + leadlen = 0; + + if (flags & ADD_KEEPCAP) + { + /* is in original case, need to get + * case-folded word too. */ + (void)str_foldcase(cbuf, addlen, fbuf, MAXWLEN); + flen = addlen - leadlen + 1; + addlen = STRLEN(fbuf); + } + else + flen = 0; + + aw = (addword_T *)getroom(lp, &bl_used, + sizeof(addword_T) + addlen + flen); + if (aw == NULL) + goto errorend; + aw->aw_next = fw->fw_adds; + fw->fw_adds = aw; + aw->aw_leadlen = leadlen; + + if (flags & ADD_KEEPCAP) + { + /* Put the addition in original case after the case-folded + * string. */ + STRCPY(aw->aw_word, fbuf); + STRCPY(aw->aw_word + addlen + 1, cbuf + leadlen); + } + else + STRCPY(aw->aw_word, cbuf); + + aw->aw_flags = flags; + aw->aw_wordlen = addlen; + + if (flags & ADD_REGION) + aw->aw_region = getc(fd); /* */ + else + aw->aw_region = REGION_ALL; + } + } + } + goto end_OK; + +errorend: + lp->sl_error = TRUE; +end_OK: + if (fd != NULL) + fclose(fd); + hash_unlock(&lp->sl_words); + sourcing_name = save_sourcing_name; + sourcing_lnum = save_sourcing_lnum; +} + +/* + * Read a list of affixes from the spell file. + */ + static int +spell_load_affixes(fd, lp, bl_usedp, affm, affp) + FILE *fd; + slang_T *lp; + int *bl_usedp; + int affm; + void **affp; +{ + int cnt; + int i, n; + char_u *p; + + cnt = getc(fd); /* */ + if (cnt == EOF) + return 0; + + /* Get room to store the affixNR list, either as char_u (1 + * byte) or short_u (2 bytes). */ + p = (char_u *)getroom(lp, bl_usedp, cnt * affm); + if (p == NULL) + return 0; + *affp = p; + for (n = 0; n < cnt; ++n) + { + i = getc(fd); /* */ + if (affm > 1) + { + i = (i << 8) + getc(fd); + *(short_u *)p = i; + p += sizeof(short_u); + } + else + { + *(char_u *)p = i; + ++p; + } + } + return cnt; +} + +/* + * Get part of an sblock_T, at least "len" bytes long. + * Returns NULL when out of memory. + */ + static void * +getroom(lp, bl_used, len) + slang_T *lp; /* lp->sl_block is current block or NULL */ + int *bl_used; /* used up from current block */ + int len; /* length needed */ +{ + char_u *p; + sblock_T *bl = lp->sl_block; + + if (bl == NULL || *bl_used + len > SBLOCKSIZE) + { + /* Allocate a block of memory. This is not freed until spell_reload() + * is called. */ + bl = (sblock_T *)alloc((unsigned)(sizeof(sblock_T) + SBLOCKSIZE)); + if (bl == NULL) + return NULL; + bl->sb_next = lp->sl_block; + lp->sl_block = bl; + *bl_used = 0; + } + + p = bl->sb_data + *bl_used; + *bl_used += len; + + return p; +} + +/* + * Parse 'spelllang' and set buf->b_langp accordingly. + * Returns an error message or NULL. + */ + char_u * +did_set_spelllang(buf) + buf_T *buf; +{ + garray_T ga; + char_u *lang; + char_u *e; + char_u *region; + int region_mask; + slang_T *lp; + int c; + char_u lbuf[MAXWLEN + 1]; + + ga_init2(&ga, sizeof(langp_T), 2); + + /* loop over comma separated languages. */ + for (lang = buf->b_p_spl; *lang != NUL; lang = e) + { + e = vim_strchr(lang, ','); + if (e == NULL) + e = lang + STRLEN(lang); + if (e > lang + 2) + { + if (e - lang >= MAXWLEN) + { + ga_clear(&ga); + return e_invarg; + } + if (lang[2] == '_') + region = lang + 3; + } + else + region = NULL; + + for (lp = first_lang; lp != NULL; lp = lp->sl_next) + if (STRNICMP(lp->sl_name, lang, 2) == 0) + break; + + if (lp == NULL) + { + /* Not found, load the language. */ + STRNCPY(lbuf, lang, e - lang); + lbuf[e - lang] = NUL; + if (region != NULL) + mch_memmove(lbuf + 2, lbuf + 5, e - lang - 4); + lp = spell_load_lang(lbuf); + } + + if (lp != NULL) + { + if (region == NULL) + region_mask = REGION_ALL; + else + { + /* find region in sl_regions */ + c = find_region(lp->sl_regions, region); + if (c == REGION_ALL) + { + c = *e; + *e = NUL; + smsg((char_u *)_("Warning: region %s not supported"), lang); + *e = c; + region_mask = REGION_ALL; + } + else + region_mask = 1 << c; + } + + if (ga_grow(&ga, 1) == FAIL) + { + ga_clear(&ga); + return e_outofmem; + } + LANGP_ENTRY(ga, ga.ga_len)->lp_slang = lp; + LANGP_ENTRY(ga, ga.ga_len)->lp_region = region_mask; + ++ga.ga_len; + } + + if (*e == ',') + ++e; + } + + /* Add a NULL entry to mark the end of the list. */ + if (ga_grow(&ga, 1) == FAIL) + { + ga_clear(&ga); + return e_outofmem; + } + LANGP_ENTRY(ga, ga.ga_len)->lp_slang = NULL; + ++ga.ga_len; + + /* Everything is fine, store the new b_langp value. */ + ga_clear(&buf->b_langp); + buf->b_langp = ga; + + return NULL; +} + +/* + * Find the region "region[2]" in "rp" (points to "sl_regions"). + * Each region is simply stored as the two characters of it's name. + * Returns the index if found, REGION_ALL if not found. + */ + static int +find_region(rp, region) + char_u *rp; + char_u *region; +{ + int i; + + for (i = 0; ; i += 2) + { + if (rp[i] == NUL) + return REGION_ALL; + if (rp[i] == region[0] && rp[i + 1] == region[1]) + break; + } + return i / 2; +} + +/* + * Return type of word: + * w word 0 + * Word BWF_ONECAP + * W WORD BWF_ALLCAP + * WoRd wOrd BWF_KEEPCAP + */ + static int +captype(word, end) + char_u *word; + char_u *end; +{ + char_u *p; + int c; + int firstcap; + int allcap; + int past_second = FALSE; /* past second word char */ + + /* find first letter */ + for (p = word; !spell_iswordc(p); mb_ptr_adv(p)) + if (p >= end) + return 0; /* only non-word characters, illegal word */ +#ifdef FEAT_MBYTE + c = mb_ptr2char_adv(&p); +#else + c = *p++; +#endif + firstcap = allcap = MB_ISUPPER(c); + + /* + * Need to check all letters to find a word with mixed upper/lower. + * But a word with an upper char only at start is a ONECAP. + */ + for ( ; p < end; mb_ptr_adv(p)) + if (spell_iswordc(p)) + { +#ifdef FEAT_MBYTE + c = mb_ptr2char(p); +#else + c = *p; +#endif + if (!MB_ISUPPER(c)) + { + /* UUl -> KEEPCAP */ + if (past_second && allcap) + return BWF_KEEPCAP; + allcap = FALSE; + } + else if (!allcap) + /* UlU -> KEEPCAP */ + return BWF_KEEPCAP; + past_second = TRUE; + } + + if (allcap) + return BWF_ALLCAP; + if (firstcap) + return BWF_ONECAP; + return 0; +} + +# if defined(FEAT_MBYTE) || defined(PROTO) +/* + * Clear all spelling tables and reload them. + * Used after 'encoding' is set. + */ + void +spell_reload() +{ + buf_T *buf; + slang_T *lp; + + /* Initialize the table for spell_iswordc(). */ + init_spell_chartab(); + + /* Unload all allocated memory. */ + while (first_lang != NULL) + { + lp = first_lang; + first_lang = lp->sl_next; + slang_free(lp); + } + + /* Go through all buffers and handle 'spelllang'. */ + for (buf = firstbuf; buf != NULL; buf = buf->b_next) + { + ga_clear(&buf->b_langp); + if (*buf->b_p_spl != NUL) + did_set_spelllang(buf); + } +} +# endif + +/* + * Recognizing words uses a two-step mechanism: + * 1. Locate a basic word, made out of word characters only and separated by + * non-word characters. + * 2. When a basic word is found, check if (possibly required) additions + * before and after the word are present. + * + * Both mechanisms use affixes (prefixes and suffixes) to reduce the number of + * words. When no matching word was found in the hashtable the start of the + * word is checked for matching prefixes and the end of the word for matching + * suffixes. All matching affixes are removed and then the resulting word is + * searched for. If found it is checked if it supports the used affix. + */ + + +#if defined(FEAT_MBYTE) || defined(PROTO) +/* + * Functions for ":mkspell". + * Only possible with the multi-byte feature. + */ + +#define MAXLINELEN 300 /* Maximum length in bytes of a line in a .aff + and .dic file. */ +/* + * Main structure to store the contents of a ".aff" file. + */ +typedef struct afffile_S +{ + char_u *af_enc; /* "SET", normalized, alloc'ed string or NULL */ + char_u *af_try; /* "TRY" line in "af_enc" encoding */ + hashtab_T af_pref; /* hashtable for prefixes, affheader_T */ + hashtab_T af_suff; /* hashtable for suffixes, affheader_T */ + garray_T af_rep; /* list of repentry_T entries from REP lines */ +} afffile_T; + +typedef struct affentry_S affentry_T; + +/* Affix header from ".aff" file. Used for af_pref and af_suff. */ +typedef struct affheader_S +{ + char_u ah_key[2]; /* key for hashtable == name of affix entry */ + int ah_combine; + affentry_T *ah_first; /* first affix entry */ + short_u ah_affnr; /* used in get_new_aff() */ +} affheader_T; + +#define HI2AH(hi) ((affheader_T *)(hi)->hi_key) + +/* Affix entry from ".aff" file. Used for prefixes and suffixes. */ +struct affentry_S +{ + affentry_T *ae_next; /* next affix with same name/number */ + char_u *ae_chop; /* text to chop off basic word (can be NULL) */ + char_u *ae_add; /* text to add to basic word (can be NULL) */ + char_u *ae_add_nw; /* first non-word character in "ae_add" */ + char_u *ae_cond; /* condition (NULL for ".") */ + regprog_T *ae_prog; /* regexp program for ae_cond or NULL */ + short_u ae_affnr; /* for old affix: new affix number */ +}; + +/* + * Structure to store a word from a ".dic" file. + */ +typedef struct dicword_S +{ + char_u *dw_affnm; /* original affix names */ + char_u dw_word[1]; /* actually longer: the word in 'encoding' */ +} dicword_T; + +static dicword_T dumdw; +#define HI2DW(hi) ((dicword_T *)((hi)->hi_key - (dumdw.dw_word - (char_u *)&dumdw))) + +/* + * Structure to store a basic word for the spell file. + * This is used for ":mkspell", not for spell checking. + */ +typedef struct basicword_S basicword_T; +struct basicword_S +{ + basicword_T *bw_next; /* next word with same basic word */ + basicword_T *bw_cnext; /* next word with same caps */ + int bw_flags; /* BWF_ flags */ + garray_T bw_prefix; /* table with prefix numbers */ + garray_T bw_suffix; /* table with suffix numbers */ + int bw_region; /* region bits */ + char_u *bw_caseword; /* keep-case word */ + char_u *bw_leadstring; /* must come before bw_word */ + char_u *bw_addstring; /* must come after bw_word */ + char_u bw_word[1]; /* actually longer: word case folded */ +}; + +static basicword_T dumbw; +#define KEY2BW(p) ((basicword_T *)((p) - (dumbw.bw_word - (char_u *)&dumbw))) +#define HI2BW(hi) KEY2BW((hi)->hi_key) + +/* Store the affix number related with a certain string. */ +typedef struct affhash_S +{ + short_u as_nr; /* the affix nr */ + char_u as_word[1]; /* actually longer */ +} affhash_T; + +static affhash_T dumas; +#define HI2AS(hi) ((affhash_T *)((hi)->hi_key - (dumas.as_word - (char_u *)&dumas))) + + +static afffile_T *spell_read_aff __ARGS((char_u *fname, vimconv_T *conv)); +static void spell_free_aff __ARGS((afffile_T *aff)); +static int spell_read_dic __ARGS((hashtab_T *ht, char_u *fname, vimconv_T *conv)); +static int get_new_aff __ARGS((hashtab_T *oldaff, garray_T *gap)); +static void spell_free_dic __ARGS((hashtab_T *dic)); +static int same_affentries __ARGS((affheader_T *ah1, affheader_T *ah2)); +static void add_affhash __ARGS((hashtab_T *ht, char_u *key, int newnr)); +static void clear_affhash __ARGS((hashtab_T *ht)); +static void trans_affixes __ARGS((dicword_T *dw, basicword_T *bw, afffile_T *oldaff, hashtab_T *newwords)); +static int build_wordlist __ARGS((hashtab_T *newwords, hashtab_T *oldwords, afffile_T *oldaff, int regionmask)); +static void combine_regions __ARGS((hashtab_T *newwords)); +static int same_affixes __ARGS((basicword_T *bw, basicword_T *nbw)); +static void expand_affixes __ARGS((hashtab_T *newwords, garray_T *prefgap, garray_T *suffgap)); +static void expand_one_aff __ARGS((basicword_T *bw, garray_T *add_words, affentry_T *pae, affentry_T *sae)); +static void add_to_wordlist __ARGS((hashtab_T *newwords, basicword_T *bw)); +static void put_bytes __ARGS((FILE *fd, long_u nr, int len)); +static void write_affix __ARGS((FILE *fd, affheader_T *ah)); +static void write_affixlist __ARGS((FILE *fd, garray_T *aff, int bytes)); +static void write_vim_spell __ARGS((char_u *fname, garray_T *prefga, garray_T *suffga, hashtab_T *newwords, int regcount, char_u *regchars)); +static void write_bword __ARGS((FILE *fd, basicword_T *bw, int lowcap, basicword_T **prevbw, int regionmask, int prefm, int suffm)); +static void free_wordtable __ARGS((hashtab_T *ht)); +static void free_basicword __ARGS((basicword_T *bw)); +static void free_affixentries __ARGS((affentry_T *first)); + +/* + * Read an affix ".aff" file. + * Returns an afffile_T, NULL for failure. + */ + static afffile_T * +spell_read_aff(fname, conv) + char_u *fname; + vimconv_T *conv; /* info for encoding conversion */ +{ + FILE *fd; + afffile_T *aff; + char_u rline[MAXLINELEN]; + char_u *line; + char_u *pc = NULL; + char_u *(items[6]); + int itemcnt; + char_u *p; + int lnum = 0; + affheader_T *cur_aff = NULL; + int aff_todo = 0; + hashtab_T *tp; + + fd = fopen((char *)fname, "r"); + if (fd == NULL) + { + EMSG2(_(e_notopen), fname); + return NULL; + } + + smsg((char_u *)_("Reading affix file %s..."), fname); + out_flush(); + + aff = (afffile_T *)alloc_clear((unsigned)sizeof(afffile_T)); + if (aff == NULL) + return NULL; + hash_init(&aff->af_pref); + hash_init(&aff->af_suff); + ga_init2(&aff->af_rep, (int)sizeof(repentry_T), 20); + + /* + * Read all the lines in the file one by one. + */ + while (!vim_fgets(rline, MAXLINELEN, fd)) + { + ++lnum; + + /* Skip comment lines. */ + if (*rline == '#') + continue; + + /* Convert from "SET" to 'encoding' when needed. */ + vim_free(pc); + if (conv->vc_type != CONV_NONE) + { + pc = string_convert(conv, rline, NULL); + line = pc; + } + else + { + pc = NULL; + line = rline; + } + + /* Split the line up in white separated items. Put a NUL after each + * item. */ + itemcnt = 0; + for (p = line; ; ) + { + while (*p != NUL && *p <= ' ') /* skip white space and CR/NL */ + ++p; + if (*p == NUL) + break; + items[itemcnt++] = p; + while (*p > ' ') /* skip until white space or CR/NL */ + ++p; + if (*p == NUL) + break; + *p++ = NUL; + } + + /* Handle non-empty lines. */ + if (itemcnt > 0) + { + if (STRCMP(items[0], "SET") == 0 && itemcnt == 2 + && aff->af_enc == NULL) + { + if (aff->af_enc != NULL) + smsg((char_u *)_("Duplicate SET line ignored in %s line %d: %s"), + fname, lnum, line); + else + { + /* Setup for conversion from "ENC" to 'encoding'. */ + aff->af_enc = enc_canonize(items[1]); + if (aff->af_enc != NULL + && convert_setup(conv, aff->af_enc, p_enc) == FAIL) + smsg((char_u *)_("Conversion in %s not supported: from %s to %s"), + fname, aff->af_enc, p_enc); + } + } + else if (STRCMP(items[0], "TRY") == 0 && itemcnt == 2 + && aff->af_try == NULL) + aff->af_try = vim_strsave(items[1]); + else if ((STRCMP(items[0], "PFX") == 0 + || STRCMP(items[0], "SFX") == 0) + && aff_todo == 0 + && itemcnt == 4) + { + /* New affix letter. */ + cur_aff = (affheader_T *)alloc((unsigned)sizeof(affheader_T)); + if (cur_aff == NULL) + break; + cur_aff->ah_key[0] = *items[1]; + cur_aff->ah_key[1] = NUL; + if (items[1][1] != NUL) + smsg((char_u *)_("Affix name too long in %s line %d: %s"), + fname, lnum, items[1]); + if (*items[2] == 'Y') + cur_aff->ah_combine = TRUE; + else if (*items[2] == 'N') + cur_aff->ah_combine = FALSE; + else if (p_verbose > 0) + smsg((char_u *)_("Expected Y or N in %s line %d: %s"), + fname, lnum, items[2]); + cur_aff->ah_first = NULL; + if (*items[0] == 'P') + tp = &aff->af_pref; + else + tp = &aff->af_suff; + if (!HASHITEM_EMPTY(hash_find(tp, cur_aff->ah_key))) + smsg((char_u *)_("Duplicate affix in %s line %d: %s"), + fname, lnum, items[1]); + else + hash_add(tp, cur_aff->ah_key); + + aff_todo = atoi((char *)items[3]); + } + else if ((STRCMP(items[0], "PFX") == 0 + || STRCMP(items[0], "SFX") == 0) + && aff_todo > 0 + && STRCMP(cur_aff->ah_key, items[1]) == 0 + && itemcnt == 5) + { + affentry_T *aff_entry; + + /* New item for an affix letter. */ + --aff_todo; + aff_entry = (affentry_T *)alloc_clear( + (unsigned)sizeof(affentry_T)); + if (aff_entry == NULL) + break; + aff_entry->ae_next = cur_aff->ah_first; + cur_aff->ah_first = aff_entry; + if (STRCMP(items[2], "0") != 0) + aff_entry->ae_chop = vim_strsave(items[2]); + if (STRCMP(items[3], "0") != 0) + aff_entry->ae_add = vim_strsave(items[3]); + if (STRCMP(items[4], ".") != 0) + { + char_u buf[MAXLINELEN]; + + aff_entry->ae_cond = vim_strsave(items[4]); + if (*items[0] == 'P') + sprintf((char *)buf, "^%s", items[4]); + else + sprintf((char *)buf, "%s$", items[4]); + aff_entry->ae_prog = vim_regcomp(buf, RE_MAGIC + RE_STRING); + } + } + else if (STRCMP(items[0], "REP") == 0 && itemcnt == 2) + /* Ignore REP count */; + else if (STRCMP(items[0], "REP") == 0 && itemcnt == 3) + { + repentry_T *rp; + + /* REP item */ + if (ga_grow(&aff->af_rep, 1) == FAIL) + break; + rp = ((repentry_T *)aff->af_rep.ga_data) + aff->af_rep.ga_len; + rp->re_from = vim_strsave(items[1]); + rp->re_to = vim_strsave(items[2]); + ++aff->af_rep.ga_len; + } + else if (p_verbose > 0) + smsg((char_u *)_("Unrecognized item in %s line %d: %s"), + fname, lnum, items[0]); + } + + } + + vim_free(pc); + fclose(fd); + return aff; +} + +/* + * Free the structure filled by spell_read_aff(). + */ + static void +spell_free_aff(aff) + afffile_T *aff; +{ + hashtab_T *ht; + hashitem_T *hi; + int todo; + int i; + repentry_T *rp; + affheader_T *ah; + + vim_free(aff->af_enc); + vim_free(aff->af_try); + + for (ht = &aff->af_pref; ; ht = &aff->af_suff) + { + todo = ht->ht_used; + for (hi = ht->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + ah = HI2AH(hi); + free_affixentries(ah->ah_first); + vim_free(ah); + } + } + if (ht == &aff->af_suff) + break; + } + hash_clear(&aff->af_pref); + hash_clear(&aff->af_suff); + + for (i = 0; i < aff->af_rep.ga_len; ++i) + { + rp = ((repentry_T *)aff->af_rep.ga_data) + i; + vim_free(rp->re_from); + vim_free(rp->re_to); + } + ga_clear(&aff->af_rep); + + vim_free(aff); +} + +/* + * Read a dictionary ".dic" file. + * Returns OK or FAIL; + * Each entry in the hashtab_T is a dicword_T. + */ + static int +spell_read_dic(ht, fname, conv) + hashtab_T *ht; + char_u *fname; + vimconv_T *conv; /* info for encoding conversion */ +{ + char_u line[MAXLINELEN]; + char_u *p; + dicword_T *dw; + char_u *pc; + char_u *w; + int l; + hash_T hash; + hashitem_T *hi; + FILE *fd; + int lnum = 1; + + fd = fopen((char *)fname, "r"); + if (fd == NULL) + { + EMSG2(_(e_notopen), fname); + return FAIL; + } + + smsg((char_u *)_("Reading dictionary file %s..."), fname); + out_flush(); + + /* Read and ignore the first line: word count. */ + (void)vim_fgets(line, MAXLINELEN, fd); + if (!isdigit(*skipwhite(line))) + EMSG2(_("E760: No word count in %s"), fname); + + /* + * Read all the lines in the file one by one. + * The words are converted to 'encoding' here, before being added to + * the hashtable. + */ + while (!vim_fgets(line, MAXLINELEN, fd)) + { + ++lnum; + + /* Remove CR, LF and white space from end. */ + l = STRLEN(line); + while (l > 0 && line[l - 1] <= ' ') + --l; + if (l == 0) + continue; /* empty line */ + line[l] = NUL; + + /* Find the optional affix names. */ + p = vim_strchr(line, '/'); + if (p != NULL) + *p++ = NUL; + + /* Convert from "SET" to 'encoding' when needed. */ + if (conv->vc_type != CONV_NONE) + { + pc = string_convert(conv, line, NULL); + w = pc; + } + else + { + pc = NULL; + w = line; + } + + dw = (dicword_T *)alloc_clear((unsigned)sizeof(dicword_T) + + STRLEN(w)); + if (dw == NULL) + break; + STRCPY(dw->dw_word, w); + vim_free(pc); + + hash = hash_hash(dw->dw_word); + hi = hash_lookup(ht, dw->dw_word, hash); + if (!HASHITEM_EMPTY(hi)) + smsg((char_u *)_("Duplicate word in %s line %d: %s"), + fname, lnum, line); + else + hash_add_item(ht, hi, dw->dw_word, hash); + + if (p != NULL) + dw->dw_affnm = vim_strsave(p); + } + + fclose(fd); + return OK; +} + +/* + * Free the structure filled by spell_read_dic(). + */ + static void +spell_free_dic(dic) + hashtab_T *dic; +{ + int todo; + dicword_T *dw; + hashitem_T *hi; + + todo = dic->ht_used; + for (hi = dic->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + dw = HI2DW(hi); + vim_free(dw->dw_affnm); + vim_free(dw); + } + } + hash_clear(dic); +} + +/* + * Take the affixes read by spell_read_aff() and add them to the new list. + * Attempts to re-use the same number for identical affixes (ignoring the + * condition, since we remove that). That is especially important when using + * multiple regions. + * Returns OK or FAIL; + */ + static int +get_new_aff(oldaff, gap) + hashtab_T *oldaff; /* hashtable with affheader_T */ + garray_T *gap; /* table with new affixes */ +{ + int oldtodo; + affheader_T *oldah, *newah, *gapah; + affentry_T *oldae, *newae; + hashitem_T *oldhi; + hashitem_T *hi; + hashtab_T condht; /* conditions already found */ + char_u condkey[MAXLINELEN]; + int newnr; + int gapnr; + int retval = OK; + char_u *p; + garray_T tga; + + /* + * Loop over all the old affix names. + */ + oldtodo = oldaff->ht_used; + for (oldhi = oldaff->ht_array; oldtodo > 0 && retval == OK; ++oldhi) + { + if (!HASHITEM_EMPTY(oldhi)) + { + --oldtodo; + oldah = (affheader_T *)oldhi->hi_key; + + /* Put entries with the same condition under the same new affix + * nr in "tga". Use hashtable "condht" to find them. */ + ga_init2(&tga, sizeof(affheader_T), 10); + hash_init(&condht); + + /* + * Loop over all affixes with the same name. + * The affixes with the same condition will get the same number, + * since they can be used with the same words. + * 1. build the lists of new affentry_T, with the headers in "tga". + * 2. Check if some of the lists already exist in "gap", re-use + * their number. + * 3. Assign the new numbers to the old affixes. + */ + + /* 1. build the lists of new affentry_T. */ + for (oldae = oldah->ah_first; oldae != NULL && retval == OK; + oldae = oldae->ae_next) + { + oldae->ae_add_nw = NULL; + if (oldae->ae_add != NULL) + { + /* Check for non-word characters in the suffix. If there + * is one this affix will be turned into an addition. + * This is stored with the old affix, that is where + * trans_affixes() will check. */ + for (p = oldae->ae_add; *p != NUL; mb_ptr_adv(p)) + if (!spell_iswordc(p)) + break; + if (*p != NUL) + oldae->ae_add_nw = p; + } + + if (oldae->ae_cond == NULL) + /* hashtable requires a non-empty key */ + STRCPY(condkey, "---"); + else + STRCPY(condkey, oldae->ae_cond); + + /* Look for an existing list with this name and condition. */ + hi = hash_find(&condht, condkey); + if (!HASHITEM_EMPTY(hi)) + /* Match with existing affix, use that one. */ + newnr = HI2AS(hi)->as_nr; + else + { + /* Add a new affix number. */ + newnr = tga.ga_len; + if (ga_grow(&tga, 1) == FAIL) + retval = FAIL; + else + { + newah = ((affheader_T *)tga.ga_data) + newnr; + newah->ah_combine = oldah->ah_combine; + newah->ah_first = NULL; + ++tga.ga_len; + + /* Add the new list to the condht hashtable. */ + add_affhash(&condht, condkey, newnr); + } + } + + /* Add the new affentry_T to the list. */ + newah = ((affheader_T *)tga.ga_data) + newnr; + newae = (affentry_T *)alloc_clear((unsigned)sizeof(affentry_T)); + if (newae == NULL) + retval = FAIL; + else + { + newae->ae_next = newah->ah_first; + newah->ah_first = newae; + if (oldae->ae_chop == NULL) + newae->ae_chop = NULL; + else + newae->ae_chop = vim_strsave(oldae->ae_chop); + if (oldae->ae_add == NULL) + newae->ae_add = NULL; + else + newae->ae_add = vim_strsave(oldae->ae_add); + + /* The condition is not copied, since the new affix is + * only used for words where the condition matches. */ + } + } + + /* 2. Check if some of the lists already exist, re-use their + * number. Otherwise add the list to "gap". */ + for (newnr = 0; newnr < tga.ga_len; ++newnr) + { + newah = ((affheader_T *)tga.ga_data) + newnr; + for (gapnr = 0; gapnr < gap->ga_len; ++gapnr) + { + gapah = ((affheader_T *)gap->ga_data) + gapnr; + if (same_affentries(newah, gapah)) + /* Found an existing affheader_T entry with same + * affentry_T list, use its number. */ + break; + } + + newah->ah_affnr = gapnr; + if (gapnr == gap->ga_len) + { + /* This is a new affentry_T list, add it. */ + if (ga_grow(gap, 1) == FAIL) + retval = FAIL; + else + { + *(((affheader_T *)gap->ga_data) + gap->ga_len) = *newah; + ++gap->ga_len; + } + } + else + { + /* free unused affentry_T list */ + free_affixentries(newah->ah_first); + } + } + + /* 3. Assign the new affix numbers to the old affixes. */ + for (oldae = oldah->ah_first; oldae != NULL && retval == OK; + oldae = oldae->ae_next) + { + if (oldae->ae_cond == NULL) + /* hashtable requires a non-empty key */ + STRCPY(condkey, "---"); + else + STRCPY(condkey, oldae->ae_cond); + + /* Look for an existing affix with this name and condition. */ + hi = hash_find(&condht, condkey); + if (!HASHITEM_EMPTY(hi)) + /* Match with existing affix, use that one. */ + newnr = HI2AS(hi)->as_nr; + else + { + EMSG(_(e_internal)); + retval = FAIL; + } + newah = ((affheader_T *)tga.ga_data) + newnr; + oldae->ae_affnr = newah->ah_affnr; + } + + ga_clear(&tga); + clear_affhash(&condht); + } + } + + return retval; +} + +/* + * Return TRUE if the affentry_T lists for "ah1" and "ah2" contain the same + * items, ignoring the order. + * Only compares the chop and add strings, not the condition. + */ + static int +same_affentries(ah1, ah2) + affheader_T *ah1; + affheader_T *ah2; +{ + affentry_T *ae1, *ae2; + + /* Check the length of the lists first. */ + ae2 = ah2->ah_first; + for (ae1 = ah1->ah_first; ae1 != NULL; ae1 = ae1->ae_next) + { + if (ae2 == NULL) + return FALSE; /* "ah1" list is longer */ + ae2 = ae2->ae_next; + } + if (ae2 != NULL) + return FALSE; /* "ah2" list is longer */ + + /* Check that each entry in "ah1" appears in "ah2". */ + for (ae1 = ah1->ah_first; ae1 != NULL; ae1 = ae1->ae_next) + { + for (ae2 = ah2->ah_first; ae2 != NULL; ae2 = ae2->ae_next) + { + if ((ae1->ae_chop == NULL) == (ae2->ae_chop == NULL) + && (ae1->ae_add == NULL) == (ae2->ae_add == NULL) + && (ae1->ae_chop == NULL + || STRCMP(ae1->ae_chop, ae2->ae_chop) == 0) + && (ae1->ae_add == NULL + || STRCMP(ae1->ae_add, ae2->ae_add) == 0)) + break; + } + if (ae2 == NULL) + return FALSE; + } + + return TRUE; +} + +/* + * Add a chop/add or cond hashtable entry. + */ + static void +add_affhash(ht, key, newnr) + hashtab_T *ht; + char_u *key; + int newnr; +{ + affhash_T *as; + + as = (affhash_T *)alloc((unsigned)sizeof(affhash_T) + STRLEN(key)); + if (as != NULL) + { + as->as_nr = newnr; + STRCPY(as->as_word, key); + hash_add(ht, as->as_word); + } +} + +/* + * Clear the chop/add hashtable used to detect identical affixes. + */ + static void +clear_affhash(ht) + hashtab_T *ht; +{ + int todo; + hashitem_T *hi; + + todo = ht->ht_used; + for (hi = ht->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + vim_free(HI2AS(hi)); + } + } + hash_clear(ht); +} + +/* + * Translate list of affix names for an old word to affix numbers in a new + * basic word. + * This checks if the conditions match with the old word. The result is that + * the new affix does not need to store the condition. + */ + static void +trans_affixes(dw, bw, oldaff, newwords) + dicword_T *dw; /* old word */ + basicword_T *bw; /* basic word */ + afffile_T *oldaff; /* affixes for "oldwords" */ + hashtab_T *newwords; /* table with words */ +{ + char_u key[2]; + char_u *p; + char_u *affnm; + garray_T *gap; + hashitem_T *aff_hi; + affheader_T *ah; + affentry_T *ae; + regmatch_T regmatch; + int i; + basicword_T *nbw; + int alen; + int wlen; + garray_T fixga; + char_u nword[MAXWLEN]; + int flags; + int n; + + ga_init2(&fixga, (int)sizeof(basicword_T *), 5); + + /* Loop over all the affix names of the old word. */ + key[1] = NUL; + for (affnm = dw->dw_affnm; *affnm != NUL; ++affnm) + { + key[0] = *affnm; + aff_hi = hash_find(&oldaff->af_pref, key); + if (!HASHITEM_EMPTY(aff_hi)) + gap = &bw->bw_prefix; /* found a prefix */ + else + { + gap = &bw->bw_suffix; /* must be a suffix */ + aff_hi = hash_find(&oldaff->af_suff, key); + if (HASHITEM_EMPTY(aff_hi)) + { + smsg((char_u *)_("No affix entry '%s' for word %s"), + key, dw->dw_word); + continue; + } + } + + /* Loop over all the affix entries for this affix name. */ + ah = HI2AH(aff_hi); + for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next) + { + regmatch.regprog = ae->ae_prog; + regmatch.rm_ic = FALSE; /* TODO: Should this be TRUE??? */ + if (ae->ae_prog == NULL + || vim_regexec(®match, dw->dw_word, (colnr_T)0)) + { + if (ae->ae_add_nw != NULL && (gap == &bw->bw_suffix + ? bw->bw_addstring : bw->bw_leadstring) == NULL) + { + /* Affix has a non-word character and isn't prepended to + * leader or appended to addition. Need to use another + * word with an addition. It's a copy of the basicword_T + * "bw". */ + if (gap == &bw->bw_suffix) + { + alen = ae->ae_add_nw - ae->ae_add; + nbw = (basicword_T *)alloc((unsigned)( + sizeof(basicword_T) + STRLEN(bw->bw_word) + + alen + 1)); + if (nbw != NULL) + { + *nbw = *bw; + ga_init2(&nbw->bw_prefix, sizeof(short_u), 1); + ga_init2(&nbw->bw_suffix, sizeof(short_u), 1); + + /* Adding the suffix may change the caps. */ + STRCPY(nword, dw->dw_word); + if (ae->ae_chop != NULL) + { + /* Remove chop string. */ + p = nword + STRLEN(nword); + for (i = mb_charlen(ae->ae_chop); i > 0; --i) + mb_ptr_back(nword, p); + *p = NUL; + } + STRCAT(nword, ae->ae_add); + flags = captype(nword, nword + STRLEN(nword)); + if (flags & BWF_KEEPCAP) + { + nword[STRLEN(dw->dw_word) + alen] = NUL; + nbw->bw_caseword = vim_strsave(nword); + } + nbw->bw_flags &= ~(BWF_ONECAP | BWF_ALLCAP + | BWF_KEEPCAP); + nbw->bw_flags |= flags; + + if (bw->bw_leadstring != NULL) + nbw->bw_leadstring = + vim_strsave(bw->bw_leadstring); + nbw->bw_addstring = vim_strsave(ae->ae_add_nw); + + STRCPY(nbw->bw_word, bw->bw_word); + if (alen > 0 || ae->ae_chop != NULL) + { + /* Suffix starts with word character. Append + * it to the word. Add new word entry. */ + wlen = STRLEN(nbw->bw_word); + if (ae->ae_chop != NULL) + wlen -= STRLEN(ae->ae_chop); + mch_memmove(nbw->bw_word + wlen, ae->ae_add, + alen); + nbw->bw_word[wlen + alen] = NUL; + add_to_wordlist(newwords, nbw); + } + else + /* Basic word is the same, link "nbw" after + * "bw". */ + bw->bw_next = nbw; + + /* Remember this word, we need to set bw_prefix + * and bw_suffix later. */ + if (ga_grow(&fixga, 1) == OK) + ((basicword_T **)fixga.ga_data)[fixga.ga_len++] + = nbw; + } + } + else + { + /* TODO: prefix with non-word char */ + } + } + else + { + /* Affix applies to this word, add the related affix + * number. But only if it's not there yet. And keep the + * list sorted, so that we can compare it later. */ + for (i = 0; i < gap->ga_len; ++i) + { + n = ((short_u *)gap->ga_data)[i]; + if (n >= ae->ae_affnr) + { + if (n == ae->ae_affnr) + i = -1; + break; + } + } + if (i >= 0 && ga_grow(gap, 1) == OK) + { + if (i < gap->ga_len) + mch_memmove(((short_u *)gap->ga_data) + i + 1, + ((short_u *)gap->ga_data) + i, + sizeof(short_u) * (gap->ga_len - i)); + ((short_u *)gap->ga_data)[i] = ae->ae_affnr; + ++gap->ga_len; + } + } + } + } + } + + /* + * For the words that we added for suffixes with non-word characters: Use + * the prefix list of the main word. + * TODO: do the same for prefixes. + */ + for (i = 0; i < fixga.ga_len; ++i) + { + nbw = ((basicword_T **)fixga.ga_data)[i]; + if (ga_grow(&nbw->bw_prefix, bw->bw_prefix.ga_len) == OK) + { + mch_memmove(nbw->bw_prefix.ga_data, bw->bw_prefix.ga_data, + bw->bw_prefix.ga_len * sizeof(short_u)); + nbw->bw_prefix.ga_len = bw->bw_prefix.ga_len; + } + } + + ga_clear(&fixga); +} + +/* + * Go over all words in "oldwords" and change the old affix names to the new + * affix numbers, check the conditions, fold case, extract the basic word and + * additions. + */ + static int +build_wordlist(newwords, oldwords, oldaff, regionmask) + hashtab_T *newwords; /* basicword_T entries */ + hashtab_T *oldwords; /* dicword_T entries */ + afffile_T *oldaff; /* affixes for "oldwords" */ + int regionmask; /* value for bw_region */ +{ + int todo; + hashitem_T *old_hi; + dicword_T *dw; + basicword_T *bw; + char_u foldword[MAXLINELEN]; + int leadlen; + char_u leadstring[MAXLINELEN]; + int addlen; + char_u addstring[MAXLINELEN]; + int dwlen; + char_u *p; + int clen; + int flags; + char_u *cp; + int l; + + todo = oldwords->ht_used; + for (old_hi = oldwords->ht_array; todo > 0; ++old_hi) + { + if (!HASHITEM_EMPTY(old_hi)) + { + --todo; + dw = HI2DW(old_hi); + + /* This takes time, print a message now and then. */ + if ((todo & 0x3ff) == 0 || todo == oldwords->ht_used - 1) + { + if (todo != oldwords->ht_used - 1) + { + msg_didout = FALSE; + msg_col = 0; + } + smsg((char_u *)_("%6d todo - %s"), todo, dw->dw_word); + out_flush(); + ui_breakcheck(); + if (got_int) + break; + } + + /* The basic words are always stored with folded case. */ + dwlen = STRLEN(dw->dw_word); + (void)str_foldcase(dw->dw_word, dwlen, foldword, MAXLINELEN); + flags = captype(dw->dw_word, dw->dw_word + dwlen); + + /* Check for non-word characters before the word. */ + clen = 0; + leadlen = 0; + if (!spell_iswordc(foldword)) + { + p = foldword; + for (;;) + { + mb_ptr_adv(p); + ++clen; + if (*p == NUL) /* Only non-word chars (bad word!) */ + { + if (p_verbose > 0) + smsg((char_u *)_("Warning: word without word characters: \"%s\""), + foldword); + break; + } + if (spell_iswordc(p)) + { + /* Move the leader to "leadstring" and remove it from + * "foldword". */ + leadlen = p - foldword; + mch_memmove(leadstring, foldword, leadlen); + leadstring[leadlen] = NUL; + mch_memmove(foldword, p, STRLEN(p) + 1); + break; + } + } + } + + /* Check for non-word characters after word characters. */ + addlen = 0; + for (p = foldword; spell_iswordc(p); mb_ptr_adv(p)) + { + if (*p == NUL) + break; + ++clen; + } + if (*p != NUL) + { + /* Move the addition to "addstring" and truncate "foldword". */ + if (flags & BWF_KEEPCAP) + { + /* Preserve caps, need to skip the right number of + * characters in the original word (case folding may + * change the byte count). */ + l = 0; + for (cp = dw->dw_word; l < clen; mb_ptr_adv(cp)) + ++l; + addlen = STRLEN(cp); + mch_memmove(addstring, cp, addlen + 1); + } + else + { + addlen = STRLEN(p); + mch_memmove(addstring, p, addlen + 1); + } + *p = NUL; + } + + bw = (basicword_T *)alloc_clear((unsigned)sizeof(basicword_T) + + STRLEN(foldword)); + if (bw == NULL) + break; + STRCPY(bw->bw_word, foldword); + bw->bw_region = regionmask; + + if (leadlen > 0) + bw->bw_leadstring = vim_strsave(leadstring); + else + bw->bw_leadstring = NULL; + if (addlen > 0) + bw->bw_addstring = vim_strsave(addstring); + else + bw->bw_addstring = NULL; + + add_to_wordlist(newwords, bw); + + if (flags & BWF_KEEPCAP) + { + if (addlen == 0) + /* use the whole word */ + bw->bw_caseword = vim_strsave(dw->dw_word + leadlen); + else + /* use only up to the addition */ + bw->bw_caseword = vim_strnsave(dw->dw_word + leadlen, + cp - dw->dw_word - leadlen); + if (bw->bw_caseword == NULL) /* out of memory */ + flags &= ~BWF_KEEPCAP; + } + bw->bw_flags = flags; + + /* Deal with any affix names on the old word, translate them + * into affix numbers. */ + ga_init2(&bw->bw_prefix, sizeof(short_u), 10); + ga_init2(&bw->bw_suffix, sizeof(short_u), 10); + if (dw->dw_affnm != NULL) + trans_affixes(dw, bw, oldaff, newwords); + } + } + if (todo > 0) + return FAIL; + return OK; +} + +/* + * Go through the list of words and combine the ones that are identical except + * for the region. + */ + static void +combine_regions(newwords) + hashtab_T *newwords; +{ + int todo; + hashitem_T *hi; + basicword_T *bw, *nbw, *pbw; + + /* Loop over all basic words in the words table. */ + todo = newwords->ht_used; + for (hi = newwords->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + + /* Loop over the list of words for this basic word. Compare with + * each following word in the same list. */ + for (bw = HI2BW(hi); bw != NULL; bw = bw->bw_next) + { + pbw = bw; + for (nbw = pbw->bw_next; nbw != NULL; nbw = pbw->bw_next) + { + if (bw->bw_flags == nbw->bw_flags + && (bw->bw_leadstring == NULL) + == (nbw->bw_leadstring == NULL) + && (bw->bw_addstring == NULL) + == (nbw->bw_addstring == NULL) + && ((bw->bw_flags & BWF_KEEPCAP) == 0 + || (STRCMP(bw->bw_caseword, + nbw->bw_caseword) == 0)) + && (bw->bw_leadstring == NULL + || (STRCMP(bw->bw_leadstring, + nbw->bw_leadstring) == 0)) + && (bw->bw_addstring == NULL + || (STRCMP(bw->bw_addstring, + nbw->bw_addstring) == 0)) + && same_affixes(bw, nbw) + ) + { + /* Match, combine regions and delete "nbw". */ + pbw->bw_next = nbw->bw_next; + bw->bw_region |= nbw->bw_region; + free_basicword(nbw); + } + else + /* No match, continue with next one. */ + pbw = nbw; + } + } + } + } +} + +/* + * Return TRUE when the prefixes and suffixes for "bw" and "nbw" are equal. + */ + static int +same_affixes(bw, nbw) + basicword_T *bw; + basicword_T *nbw; +{ + return (bw->bw_prefix.ga_len == nbw->bw_prefix.ga_len + && bw->bw_suffix.ga_len == nbw->bw_suffix.ga_len + && (bw->bw_prefix.ga_len == 0 + || vim_memcmp(bw->bw_prefix.ga_data, + nbw->bw_prefix.ga_data, + bw->bw_prefix.ga_len * sizeof(short_u)) == 0) + && (bw->bw_suffix.ga_len == 0 + || vim_memcmp(bw->bw_suffix.ga_data, + nbw->bw_suffix.ga_data, + bw->bw_suffix.ga_len * sizeof(short_u)) == 0)); +} + +/* + * For each basic word with additions turn the affixes into other additions + * and/or new basic words. The result is that no affixes apply to a word with + * additions. + */ + static void +expand_affixes(newwords, prefgap, suffgap) + hashtab_T *newwords; + garray_T *prefgap; + garray_T *suffgap; +{ + int todo; + hashitem_T *hi; + basicword_T *bw; + int pi, si; + affentry_T *pae, *sae; + garray_T add_words; + int n; + + ga_init2(&add_words, sizeof(basicword_T *), 10); + + todo = newwords->ht_used; + for (hi = newwords->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + for (bw = HI2BW(hi); bw != NULL; bw = bw->bw_next) + { + /* + * Need to fix affixes if there is a leader or addition and + * there are prefixes or suffixes. + */ + if ((bw->bw_leadstring != NULL || bw->bw_addstring != NULL) + && (bw->bw_prefix.ga_len != 0 + || bw->bw_suffix.ga_len != 0)) + { + /* Loop over all prefix numbers, but first without a + * prefix. */ + for (pi = -1; pi < bw->bw_prefix.ga_len; ++pi) + { + pae = NULL; + if (pi >= 0) + { + n = ((short_u *)bw->bw_prefix.ga_data)[pi]; + pae = ((affheader_T *)prefgap->ga_data + n) + ->ah_first; + } + + /* Loop over all entries for prefix "pi". Do it once + * when there is no prefix (pi == -1). */ + do + { + /* Loop over all suffix numbers. Do without a + * suffix first when there is a prefix. */ + for (si = (pi == -1 ? 0 : -1); + si < bw->bw_suffix.ga_len; ++si) + { + sae = NULL; + if (si >= 0) + { + n = ((short_u *)bw->bw_suffix.ga_data)[si]; + sae = ((affheader_T *)suffgap->ga_data + n) + ->ah_first; + } + + /* Loop over all entries for suffix "si". Do + * it once when there is no suffix (si == -1). + */ + do + { + /* Expand the word for this combination of + * prefixes and affixes. */ + expand_one_aff(bw, &add_words, pae, sae); + + /* Advance to next suffix entry, if there + * is one. */ + if (sae != NULL) + sae = sae->ae_next; + } while (sae != NULL); + } + + /* Advance to next prefix entry, if there is one. */ + if (pae != NULL) + pae = pae->ae_next; + } while (pae != NULL); + } + } + } + } + } + + /* + * Add the new words afterwards, can't change "newwords" while going over + * all its items. + */ + for (pi = 0; pi < add_words.ga_len; ++pi) + add_to_wordlist(newwords, ((basicword_T **)add_words.ga_data)[pi]); + + ga_clear(&add_words); +} + +/* + * Add one word to "add_words" for basic word "bw" with additions, adding + * prefix "pae" and suffix "sae". Either "pae" or "sae" can be NULL. + */ + static void +expand_one_aff(bw, add_words, pae, sae) + basicword_T *bw; + garray_T *add_words; + affentry_T *pae; + affentry_T *sae; +{ + char_u word[MAXWLEN + 1]; + char_u caseword[MAXWLEN + 1]; + int l = 0; + int choplen = 0; + int ll; + basicword_T *nbw; + + /* Prepend prefix to the basic word if there is a prefix and there is no + * leadstring. */ + if (pae != NULL && bw->bw_leadstring == NULL) + { + if (pae->ae_add != NULL) + { + l = STRLEN(pae->ae_add); + mch_memmove(word, pae->ae_add, l); + } + if (pae->ae_chop != NULL) + choplen = STRLEN(pae->ae_chop); + } + + /* Copy the body of the word. */ + STRCPY(word + l, bw->bw_word + choplen); + + /* Do the same for bw_caseword, if it's there. */ + if (bw->bw_flags & BWF_KEEPCAP) + { + if (l > 0) + mch_memmove(caseword, pae->ae_add, l); + STRCPY(caseword + l, bw->bw_caseword + choplen); + } + + /* Append suffix to the basic word if there is a suffix and there is no + * addstring. */ + if (sae != 0 && bw->bw_addstring == NULL) + { + l = STRLEN(word); + if (sae->ae_chop != NULL) + l -= STRLEN(sae->ae_chop); + if (sae->ae_add == NULL) + word[l] = NUL; + else + STRCPY(word + l, sae->ae_add); + + if (bw->bw_flags & BWF_KEEPCAP) + { + /* Do the same for the caseword. */ + l = STRLEN(caseword); + if (sae->ae_chop != NULL) + l -= STRLEN(sae->ae_chop); + if (sae->ae_add == NULL) + caseword[l] = NUL; + else + STRCPY(caseword + l, sae->ae_add); + } + } + + nbw = (basicword_T *)alloc_clear((unsigned) + sizeof(basicword_T) + STRLEN(word)); + if (nbw != NULL) + { + /* Add the new word to the list of words to be added later. */ + if (ga_grow(add_words, 1) == FAIL) + { + vim_free(nbw); + return; + } + ((basicword_T **)add_words->ga_data)[add_words->ga_len++] = nbw; + + /* Copy the (modified) basic word, flags and region. */ + STRCPY(nbw->bw_word, word); + nbw->bw_flags = bw->bw_flags; + nbw->bw_region = bw->bw_region; + + /* Set the (modified) caseword. */ + if (bw->bw_flags & BWF_KEEPCAP) + if ((nbw->bw_caseword = vim_strsave(caseword)) == NULL) + nbw->bw_flags &= ~BWF_KEEPCAP; + + if (bw->bw_leadstring != NULL) + { + if (pae != NULL) + { + /* Prepend prefix to leadstring. */ + ll = STRLEN(bw->bw_leadstring); + l = choplen = 0; + if (pae->ae_add != NULL) + l = STRLEN(pae->ae_add); + if (pae->ae_chop != NULL) + { + choplen = STRLEN(pae->ae_chop); + if (choplen > ll) /* TODO: error? */ + choplen = ll; + } + nbw->bw_leadstring = alloc((unsigned)(ll + l - choplen + 1)); + if (nbw->bw_leadstring != NULL) + { + if (l > 0) + mch_memmove(nbw->bw_leadstring, pae->ae_add, l); + STRCPY(nbw->bw_leadstring + l, bw->bw_leadstring + choplen); + } + } + else + nbw->bw_leadstring = vim_strsave(bw->bw_leadstring); + } + + if (bw->bw_addstring != NULL) + { + if (sae != NULL) + { + /* Append suffix to addstring. */ + l = STRLEN(bw->bw_addstring); + if (sae->ae_chop != NULL) + { + l -= STRLEN(sae->ae_chop); + if (l < 0) /* TODO: error? */ + l = 0; + } + if (sae->ae_add == NULL) + ll = 0; + else + ll = STRLEN(sae->ae_add); + nbw->bw_addstring = alloc((unsigned)(ll + l - choplen + 1)); + if (nbw->bw_addstring != NULL) + { + STRCPY(nbw->bw_addstring, bw->bw_addstring); + if (sae->ae_add == NULL) + nbw->bw_addstring[l] = NUL; + else + STRCPY(nbw->bw_addstring + l, sae->ae_add); + } + } + else + nbw->bw_addstring = vim_strsave(bw->bw_addstring); + } + } +} + +/* + * Add basicword_T "*bw" to wordlist "newwords". + */ + static void +add_to_wordlist(newwords, bw) + hashtab_T *newwords; + basicword_T *bw; +{ + hashitem_T *hi; + basicword_T *bw2; + + hi = hash_find(newwords, bw->bw_word); + if (HASHITEM_EMPTY(hi)) + { + /* New entry, add to hashlist. */ + hash_add(newwords, bw->bw_word); + bw->bw_next = NULL; + } + else + { + /* Existing entry, append to list of basic words. */ + bw2 = HI2BW(hi); + bw->bw_next = bw2->bw_next; + bw2->bw_next = bw; + } +} + +/* + * Write a number to file "fd", MSB first, in "len" bytes. + */ + static void +put_bytes(fd, nr, len) + FILE *fd; + long_u nr; + int len; +{ + int i; + + for (i = len - 1; i >= 0; --i) + putc((int)(nr >> (i * 8)), fd); +} + +/* + * Write affix info. ... + */ + static void +write_affix(fd, ah) + FILE *fd; + affheader_T *ah; +{ + int i = 0; + affentry_T *ae; + char_u *p; + int round; + + fputc(ah->ah_combine ? 1 : 0, fd); /* */ + + /* Count the number of entries. */ + for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next) + ++i; + put_bytes(fd, (long_u)i, 2); /* */ + + for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next) + for (round = 1; round <= 2; ++round) + { + p = round == 1 ? ae->ae_chop : ae->ae_add; + if (p == NULL) + putc(0, fd); /* / */ + else + { + putc(STRLEN(p), fd); /* / */ + /* / */ + fwrite(p, STRLEN(p), (size_t)1, fd); + } + } +} + +/* + * Write list of affix NRs: ... + */ + static void +write_affixlist(fd, aff, bytes) + FILE *fd; + garray_T *aff; + int bytes; +{ + int i; + + if (aff->ga_len > 0) + { + putc(aff->ga_len, fd); /* */ + for (i = 0; i < aff->ga_len; ++i) + put_bytes(fd, (long_u )((short_u *)aff->ga_data)[i], bytes); + } +} + +/* + * Vim spell file format:
+ * + * + *
: ... + * + * 10 bytes "VIMspell01" + * 1 byte number of regions following (8 supported) + * 2 bytes Region name: ca, au, etc. + * First is region 1. + * + * + * : ... + * : ... + * list of possible affixes: prefixes and suffixes. + * + * 2 bytes Number of affixes (MSB comes first). + * When more than 256 an affixNR is 2 bytes. + * This is separate for prefixes and suffixes! + * First affixNR is 0. + * 2 bytes Total number of affix items (MSB comes first). + * + * : ... + * + * 1 byte 0x01: prefix combines with suffix. + * 0x02-0x80: unset + * 2 bytes Number of affixes with this affixNR (MSB first). + * + * : + * + * 1 byte Length of in bytes. + * N bytes To be removed from basic word. + * 1 byte Length of in bytes. + * N bytes To be added to basic word. + * + * + * : ... + * + * 4 bytes Length of in bytes, excluding + * . MSB first. + * To be defined. + * + * + * : ... + * + * 4 bytes Number of following. MSB first. + * + * : [] + * [ ] + * [ ...] (prefixes) + * [ ...] (suffixes) + * [] + * [ ...] + * + * i 1 byte Number of bytes copied from previous word. + * N bytes Additional bytes for word, up to byte smaller than + * 0x20 (space). + * Must only contain case-folded word characters. + * 1 byte 0x01: word is valid without addition + * 0x02: has region byte + * 0x04: first letter must be upper-case + * 0x08: has suffixes, and follow + * 0x10: more flags, follows next + * 0x20-0x80: can't be used, unset + * 1 byte 0x01: has additions, and follow + * 0x02: has prefixes, and follow + * 0x04: all letters must be upper-case + * 0x08: case must match + * 0x10-0x80: unset + * 1 byte Length of . + * N bytes Word with matching case. + * 1 byte Number of affix NRs following. + * 1 or 2 byte Number of possible affix for this word. + * When using 2 bytes MSB comes first. + * 1 byte Bitmask for regions in which word is valid. When + * omitted it's valid in all regions. + * Lowest bit is for region 1. + * 2 bytes Number of items following. + * + * : [ ] [] + * + * 1 byte 0x01: fixed case, is the whole word + * with matching case. + * 0x02: first letter must be upper-case + * 0x04: all letters must be upper-case + * 0x08: has region byte + * 0x10-0x80: unset + * 1 byte Length of in bytes. + * 1 byte Number of bytes at start of that must + * come before the start of the basic word. + * N bytes Word characters, before/in/after the word. + * + * All text characters are in 'encoding': , , , + * > and . + * All other fields are ASCII: + * is always case-folded. + */ + +/* + * Write the Vim spell file "fname". + */ + static void +write_vim_spell(fname, prefga, suffga, newwords, regcount, regchars) + char_u *fname; + garray_T *prefga; /* prefixes, affheader_T entries */ + garray_T *suffga; /* suffixes, affheader_T entries */ + hashtab_T *newwords; /* basic words, basicword_T entries */ + int regcount; /* number of regions */ + char_u *regchars; /* region names */ +{ + FILE *fd; + garray_T *gap; + hashitem_T *hi; + char_u **wtab; + int todo; + int flags, aflags; + basicword_T *bw, *bwf, *bw2, *prevbw = NULL; + int regionmask; /* mask for all relevant region bits */ + int i; + int cnt; + affentry_T *ae; + int round; + int prefm, suffm; + garray_T bwga; + + fd = fopen((char *)fname, "w"); + if (fd == NULL) + { + EMSG2(_(e_notopen), fname); + return; + } + + fwrite(VIMSPELLMAGIC, VIMSPELLMAGICL, (size_t)1, fd); + + /* write the region names if there is more than one */ + if (regcount > 1) + { + putc(regcount, fd); + fwrite(regchars, (size_t)(regcount * 2), (size_t)1, fd); + regionmask = (1 << regcount) - 1; + } + else + { + putc(0, fd); + regionmask = 0; + } + + /* Write the prefix and suffix lists. */ + for (round = 1; round <= 2; ++round) + { + gap = round == 1 ? prefga : suffga; + put_bytes(fd, (long_u)gap->ga_len, 2); /* */ + + /* Count the total number of affix items. */ + cnt = 0; + for (i = 0; i < gap->ga_len; ++i) + for (ae = ((affheader_T *)gap->ga_data + i)->ah_first; + ae != NULL; ae = ae->ae_next) + ++cnt; + put_bytes(fd, (long_u)cnt, 2); /* */ + + for (i = 0; i < gap->ga_len; ++i) + write_affix(fd, (affheader_T *)gap->ga_data + i); + } + + /* Number of bytes used for affix NR depends on affix count. */ + prefm = (prefga->ga_len > 256) ? 2 : 1; + suffm = (suffga->ga_len > 256) ? 2 : 1; + + /* Write the suggest info. TODO */ + put_bytes(fd, 0L, 4); + + /* + * Write the word list. ... + */ + /* number of basic words in 4 bytes */ + put_bytes(fd, newwords->ht_used, 4); /* */ + + /* + * Sort the word list, so that we can reuse as many bytes as possible. + */ + wtab = (char_u **)alloc((unsigned)(sizeof(char_u *) * newwords->ht_used)); + if (wtab != NULL) + { + /* Make a table with pointers to each word. */ + todo = newwords->ht_used; + for (hi = newwords->ht_array; todo > 0; ++hi) + if (!HASHITEM_EMPTY(hi)) + wtab[--todo] = hi->hi_key; + + /* Sort. */ + sort_strings(wtab, (int)newwords->ht_used); + + /* Now write each basic word to the spell file. */ + ga_init2(&bwga, sizeof(basicword_T *), 10); + for (todo = 0; todo < newwords->ht_used; ++todo) + { + bwf = KEY2BW(wtab[todo]); + + /* + * Reorder the list of basicword_T words: make a list for words + * with the same case-folded word. Put them together for same + * caps (ONECAP, ALLCAP and various KEEPCAP words) and same + * affixes. Each list will then be put as a basic word with + * additions. + * This won't take much space, since the basic word is the same + * every time, only its length is written. + */ + bwga.ga_len = 0; + for (bw = bwf; bw != NULL; bw = bw->bw_next) + { + flags = bw->bw_flags & (BWF_ONECAP | BWF_KEEPCAP | BWF_ALLCAP); + + /* Go through the lists we found so far. Break when the case + * matches. */ + for (i = 0; i < bwga.ga_len; ++i) + { + bw2 = ((basicword_T **)bwga.ga_data)[i]; + aflags = bw2->bw_flags & (BWF_ONECAP | BWF_KEEPCAP + | BWF_ALLCAP); + if (flags == aflags + && ((flags & BWF_KEEPCAP) == 0 + || (STRCMP(bw->bw_caseword, + bw2->bw_caseword) == 0)) + && same_affixes(bw, bw2)) + break; + } + if (i == bwga.ga_len) + { + /* No word with similar caps, make a new list. */ + if (ga_grow(&bwga, 1) == FAIL) + break; + ((basicword_T **)bwga.ga_data)[i] = bw; + bw->bw_cnext = NULL; + ++bwga.ga_len; + } + else + { + /* Add to list of words with similar caps. */ + bw->bw_cnext = bw2->bw_cnext; + bw2->bw_cnext = bw; + } + } + + /* Prefer the word with no caps to use as the first basic word. + * At least one without KEEPCAP. */ + bw = NULL; + for (i = 0; i < bwga.ga_len; ++i) + { + bw2 = ((basicword_T **)bwga.ga_data)[i]; + if (bw == NULL + || (bw2->bw_flags & (BWF_ONECAP | BWF_KEEPCAP + | BWF_ALLCAP)) == 0 + || (bw->bw_flags & BWF_KEEPCAP)) + bw = bw2; + } + + /* Write first basic word. If it's KEEPCAP then we need a word + * without VALID flag first (makes it easier to read the list back + * in). */ + if (bw->bw_flags & BWF_KEEPCAP) + write_bword(fd, bw, TRUE, &prevbw, regionmask, prefm, suffm); + write_bword(fd, bw, FALSE, &prevbw, regionmask, prefm, suffm); + + /* Write other basic words, with different caps. */ + for (i = 0; i < bwga.ga_len; ++i) + { + bw2 = ((basicword_T **)bwga.ga_data)[i]; + if (bw2 != bw) + write_bword(fd, bw2, FALSE, &prevbw, regionmask, + prefm, suffm); + } + } + + ga_clear(&bwga); + } + + fclose(fd); +} + +/* + * Write basic word, followed by any additions. + * + * : [] + * [ ] + * [ ...] (prefixes) + * [ ...] (suffixes) + * [] + * [ ...] + */ + static void +write_bword(fd, bwf, lowcap, prevbw, regionmask, prefm, suffm) + FILE *fd; + basicword_T *bwf; + int lowcap; /* write KEEPKAP word as not-valid */ + basicword_T **prevbw; /* last written basic word */ + int regionmask; /* mask that includes all possible regions */ + int prefm; + int suffm; +{ + int flags; + int aflags; + int len; + int leadlen, addlen; + int clen; + int adds = 0; + int i; + basicword_T *bw, *bw2; + + /* Check how many bytes can be copied from the previous word. */ + len = STRLEN(bwf->bw_word); + if (*prevbw == NULL) + clen = 0; + else + for (clen = 0; clen < len + && (*prevbw)->bw_word[clen] == bwf->bw_word[clen]; ++clen) + ; + putc(clen, fd); /* */ + *prevbw = bwf; + /* */ + if (len > clen) + fwrite(bwf->bw_word + clen, (size_t)(len - clen), (size_t)1, fd); + + /* Try to find a word without additions to use first. */ + bw = bwf; + for (bw2 = bwf; bw2 != NULL; bw2 = bw2->bw_cnext) + { + if (bw2->bw_addstring != NULL || bw2->bw_leadstring != NULL) + ++adds; + else + bw = bw2; + } + + /* Flags: If there is no leadstring and no addstring the basic word is + * valid, may have prefixes, suffixes and region. */ + flags = bw->bw_flags; + if (bw->bw_addstring == NULL && bw->bw_leadstring == NULL) + { + flags |= BWF_VALID; + + /* Add the prefix/suffix list if there are prefixes/suffixes. */ + if (bw->bw_prefix.ga_len > 0) + flags |= BWF_PREFIX; + if (bw->bw_suffix.ga_len > 0) + flags |= BWF_SUFFIX; + + /* Flags: add the region byte if the word isn't valid in all + * regions. */ + if (regionmask != 0 && (bw->bw_region & regionmask) != regionmask) + flags |= BWF_REGION; + } + + /* Flags: may have additions. */ + if (adds > 0) + flags |= BWF_ADDS; + + /* The dummy word before a KEEPCAP word doesn't have any flags, they are + * in the actual word that follows. */ + if (lowcap) + flags = 0; + + /* Flags: when the upper byte is not used we only write one flags + * byte, if it's used then set an extra flag in the first byte and + * also write the second byte. */ + if ((flags & 0xff00) == 0) + putc(flags, fd); /* */ + else + { + putc(flags | BWF_SECOND, fd); /* */ + putc((int)((unsigned)flags >> 8), fd); /* */ + } + + /* First dummy word doesn't need anything but flags. */ + if (lowcap) + return; + + if (flags & BWF_KEEPCAP) + { + len = STRLEN(bw->bw_caseword); + putc(len, fd); /* */ + for (i = 0; i < len; ++i) + putc(bw->bw_caseword[i], fd); /* */ + } + + /* write prefix and suffix lists: ... */ + if (flags & BWF_PREFIX) + write_affixlist(fd, &bw->bw_prefix, prefm); + if (flags & BWF_SUFFIX) + write_affixlist(fd, &bw->bw_suffix, suffm); + + if (flags & BWF_REGION) + putc(bw->bw_region, fd); /* */ + + /* + * Additions. + */ + if (adds > 0) + { + put_bytes(fd, (long_u)adds, 2); /* */ + + for (bw = bwf; bw != NULL; bw = bw->bw_cnext) + if (bw->bw_leadstring != NULL || bw->bw_addstring != NULL) + { + /* : [ ] + * [] */ + aflags = 0; + if (bw->bw_flags & BWF_ONECAP) + aflags |= ADD_ONECAP; + if (bw->bw_flags & BWF_ALLCAP) + aflags |= ADD_ALLCAP; + if (bw->bw_flags & BWF_KEEPCAP) + aflags |= ADD_KEEPCAP; + if (regionmask != 0 + && (bw->bw_region & regionmask) != regionmask) + aflags |= ADD_REGION; + putc(aflags, fd); /* */ + + if (bw->bw_leadstring == NULL) + leadlen = 0; + else + leadlen = STRLEN(bw->bw_leadstring); + if (bw->bw_addstring == NULL) + addlen = 0; + else + addlen = STRLEN(bw->bw_addstring); + putc(leadlen + addlen, fd); /* */ + putc(leadlen, fd); /* */ + /* */ + if (bw->bw_leadstring != NULL) + fwrite(bw->bw_leadstring, (size_t)leadlen, (size_t)1, fd); + if (bw->bw_addstring != NULL) + fwrite(bw->bw_addstring, (size_t)addlen, (size_t)1, fd); + + if (aflags & ADD_REGION) + putc(bw->bw_region, fd); /* */ + } + } +} + + +/* + * ":mkspell outfile infile ..." + */ + void +ex_mkspell(eap) + exarg_T *eap; +{ + int fcount; + char_u **fnames; + char_u fname[MAXPATHL]; + char_u wfname[MAXPATHL]; + afffile_T *(afile[8]); + hashtab_T dfile[8]; + int i; + int len; + char_u region_name[16]; + struct stat st; + int round; + vimconv_T conv; + + /* Expand all the arguments (e.g., $VIMRUNTIME). */ + if (get_arglist_exp(eap->arg, &fcount, &fnames) == FAIL) + return; + if (fcount < 2) + EMSG(_(e_invarg)); /* need at least output and input names */ + else if (fcount > 9) + EMSG(_("E754: Only up to 8 regions supported")); + else + { + /* Check for overwriting before doing things that may take a lot of + * time. */ + sprintf((char *)wfname, "%s.%s.spl", fnames[0], p_enc); + if (!eap->forceit && mch_stat((char *)wfname, &st) >= 0) + { + EMSG(_(e_exists)); + goto theend; + } + if (mch_isdir(fnames[0])) + { + EMSG2(_(e_isadir2), fnames[0]); + goto theend; + } + + /* + * Init the aff and dic pointers. + * Get the region names if there are more than 2 arguments. + */ + for (i = 1; i < fcount; ++i) + { + afile[i - 1] = NULL; + hash_init(&dfile[i - 1]); + if (fcount > 2) + { + len = STRLEN(fnames[i]); + if (STRLEN(gettail(fnames[i])) < 5 || fnames[i][len - 3] != '_') + { + EMSG2(_("E755: Invalid region in %s"), fnames[i]); + goto theend; + } + else + { + region_name[(i - 1) * 2] = TOLOWER_ASC(fnames[i][len - 2]); + region_name[(i - 1) * 2 + 1] = + TOLOWER_ASC(fnames[i][len - 1]); + } + } + } + + /* + * Read all the .aff and .dic files. + * Text is converted to 'encoding'. + */ + for (i = 1; i < fcount; ++i) + { + /* Read the .aff file. Will init "conv" based on the "SET" line. */ + conv.vc_type = CONV_NONE; + sprintf((char *)fname, "%s.aff", fnames[i]); + if ((afile[i - 1] = spell_read_aff(fname, &conv)) == NULL) + break; + + /* Read the .dic file. */ + sprintf((char *)fname, "%s.dic", fnames[i]); + if (spell_read_dic(&dfile[i - 1], fname, &conv) == FAIL) + break; + + /* Free any conversion stuff. */ + convert_setup(&conv, NULL, NULL); + } + + /* Process the data when all the files could be read. */ + if (i == fcount) + { + garray_T prefga; + garray_T suffga; + garray_T *gap; + hashtab_T newwords; + + /* + * Combine all the affixes into one new affix list. This is done + * for prefixes and suffixes separately. + * We need to do this for each region, try to re-use the same + * affixes. + * Since we number the new affix entries, a growarray will do. In + * the affheader_T the ah_key is unused. + */ + MSG(_("Combining affixes...")); + out_flush(); + for (round = 1; round <= 2; ++round) + { + gap = round == 1 ? &prefga : &suffga; + ga_init2(gap, sizeof(affheader_T), 50); + for (i = 1; i < fcount; ++i) + get_new_aff(round == 1 ? &afile[i - 1]->af_pref + : &afile[i - 1]->af_suff, gap); + } + + /* + * Go over all words and: + * - change the old affix names to the new affix numbers + * - check the conditions + * - fold case + * - extract the basic word and additions. + * Do this for each region. + */ + MSG(_("Building word list...")); + out_flush(); + hash_init(&newwords); + + for (i = 1; i < fcount; ++i) + build_wordlist(&newwords, &dfile[i - 1], afile[i - 1], + 1 << (i - 1)); + + if (fcount > 2) + { + /* Combine words for the different regions into one. */ + MSG(_("Combining regions...")); + out_flush(); + combine_regions(&newwords); + } + + /* + * Affixes on a word with additions are clumsy, would require + * inefficient searching. Turn the affixes into additions and/or + * the expanded word. + */ + MSG(_("Processing words...")); + out_flush(); + expand_affixes(&newwords, &prefga, &suffga); + + /* Write the info in the spell file. */ + smsg((char_u *)_("Writing spell file %s..."), wfname); + out_flush(); + write_vim_spell(wfname, &prefga, &suffga, &newwords, + fcount - 1, region_name); + MSG(_("Done!")); + out_flush(); + + /* Free the allocated stuff. */ + free_wordtable(&newwords); + for (round = 1; round <= 2; ++round) + { + gap = round == 1 ? &prefga: &suffga; + for (i = 0; i < gap->ga_len; ++i) + free_affixentries(((affheader_T *)gap->ga_data + i) + ->ah_first); + ga_clear(gap); + } + } + + /* Free the .aff and .dic file structures. */ + for (i = 1; i < fcount; ++i) + { + if (afile[i - 1] != NULL) + spell_free_aff(afile[i - 1]); + spell_free_dic(&dfile[i - 1]); + } + } + +theend: + FreeWild(fcount, fnames); +} + + static void +free_wordtable(ht) + hashtab_T *ht; +{ + int todo; + basicword_T *bw, *nbw; + hashitem_T *hi; + + todo = ht->ht_used; + for (hi = ht->ht_array; todo > 0; ++hi) + { + if (!HASHITEM_EMPTY(hi)) + { + --todo; + for (bw = HI2BW(hi); bw != NULL; bw = nbw) + { + nbw = bw->bw_next; + free_basicword(bw); + } + } + } +} + +/* + * Free a basicword_T and what it contains. + */ + static void +free_basicword(bw) + basicword_T *bw; +{ + ga_clear(&bw->bw_prefix); + ga_clear(&bw->bw_suffix); + vim_free(bw->bw_caseword); + vim_free(bw->bw_leadstring); + vim_free(bw->bw_addstring); + vim_free(bw); +} + +/* + * Free a list of affentry_T. + */ + static void +free_affixentries(first) + affentry_T *first; +{ + affentry_T *ap, *an; + + for (ap = first; ap != NULL; ap = an) + { + an = ap->ae_next; + vim_free(ap->ae_chop); + vim_free(ap->ae_add); + vim_free(ap->ae_cond); + vim_free(ap->ae_prog); + vim_free(ap); + } +} + +#endif /* FEAT_MBYTE */ + +#endif /* FEAT_SYN_HL */ + +#if 0 /* old spell code with words in .spl file */ +/* + * Structure that is used to store the text from the language file. This + * avoids the need to allocate space for each individual word. It's allocated + * in big chunks for speed. */ #define SBLOCKSIZE 4096 /* default size of sb_data */ typedef struct sblock_S sblock_T; @@ -75,7 +3932,7 @@ static slang_T *first_lang = NULL; typedef struct dword_S { char_u dw_region; /* one bit per region where it's valid */ - char_u dw_flags; /* WF_ flags */ + char_u dw_flags; /* DW_ flags */ char_u dw_word[1]; /* actually longer, NUL terminated */ } dword_T; @@ -91,7 +3948,7 @@ typedef struct nword_S starting with non-word character */ int nw_maxlen; /* longest nword length (after the dword) */ char_u nw_region; /* one bit per region where it's valid */ - char_u nw_flags; /* WF_ flags */ + char_u nw_flags; /* DW_ flags */ char_u nw_word[1]; /* actually longer, NUL terminated */ } nword_T; @@ -921,163 +4778,5 @@ theend: vim_free(rbuf); } -/* - * Parse 'spelllang' and set buf->b_langp accordingly. - * Returns an error message or NULL. - */ - char_u * -did_set_spelllang(buf) - buf_T *buf; -{ - garray_T ga; - char_u *lang; - char_u *e; - char_u *region; - int region_mask; - slang_T *lp; - int c; - - ga_init2(&ga, sizeof(langp_T), 2); - - /* loop over comma separated languages. */ - for (lang = buf->b_p_spl; *lang != NUL; lang = e) - { - e = vim_strchr(lang, ','); - if (e == NULL) - e = lang + STRLEN(lang); - if (e > lang + 2) - { - if (lang[2] != '_' || e - lang != 5) - { - ga_clear(&ga); - return e_invarg; - } - region = lang + 3; - } - else - region = NULL; - - for (lp = first_lang; lp != NULL; lp = lp->sl_next) - if (STRNICMP(lp->sl_name, lang, 2) == 0) - break; - - if (lp == NULL) - /* Not found, load the language. */ - lp = spell_load_lang(lang); - - if (lp != NULL) - { - if (region == NULL) - region_mask = REGION_ALL; - else - { - /* find region in sl_regions */ - c = find_region(lp->sl_regions, region); - if (c == REGION_ALL) - { - c = lang[5]; - lang[5] = NUL; - smsg((char_u *)_("Warning: region %s not supported"), lang); - lang[5] = c; - region_mask = REGION_ALL; - } - else - region_mask = 1 << c; - } - - if (ga_grow(&ga, 1) == FAIL) - { - ga_clear(&ga); - return e_outofmem; - } - LANGP_ENTRY(ga, ga.ga_len)->lp_slang = lp; - LANGP_ENTRY(ga, ga.ga_len)->lp_region = region_mask; - ++ga.ga_len; - } - - if (*e == ',') - ++e; - } - - /* Add a NULL entry to mark the end of the list. */ - if (ga_grow(&ga, 1) == FAIL) - { - ga_clear(&ga); - return e_outofmem; - } - LANGP_ENTRY(ga, ga.ga_len)->lp_slang = NULL; - ++ga.ga_len; - - /* Everything is fine, store the new b_langp value. */ - ga_clear(&buf->b_langp); - buf->b_langp = ga; - - return NULL; -} - -/* - * Find the region "region[2]" in "rp" (points to "sl_regions"). - * Each region is simply stored as the two characters of it's name. - * Returns the index if found, REGION_ALL if not found. - */ - static int -find_region(rp, region) - char_u *rp; - char_u *region; -{ - int i; - - for (i = 0; ; i += 2) - { - if (rp[i] == NUL) - return REGION_ALL; - if (rp[i] == region[0] && rp[i + 1] == region[1]) - break; - } - return i / 2; -} - -# if defined(FEAT_MBYTE) || defined(PROTO) -/* - * Clear all spelling tables and reload them. - * Used after 'encoding' is set. - */ - void -spell_reload() -{ - buf_T *buf; - slang_T *lp; - sblock_T *sp; - - /* Initialize the table for spell_iswordc(). */ - init_spell_chartab(); - - /* Unload all allocated memory. */ - while (first_lang != NULL) - { - lp = first_lang; - first_lang = lp->sl_next; - - hash_clear(&lp->sl_fwords.wi_ht); - ga_clear(&lp->sl_fwords.wi_add); - hash_clear(&lp->sl_kwords.wi_ht); - ga_clear(&lp->sl_kwords.wi_add); - while (lp->sl_block != NULL) - { - sp = lp->sl_block; - lp->sl_block = sp->sb_next; - vim_free(sp); - } - } - - /* Go through all buffers and handle 'spelllang'. */ - for (buf = firstbuf; buf != NULL; buf = buf->b_next) - { - ga_clear(&buf->b_langp); - if (*buf->b_p_spl != NUL) - did_set_spelllang(buf); - } -} -# endif - -#endif /* FEAT_SYN_HL */ + +#endif diff --git a/src/tag.c b/src/tag.c --- a/src/tag.c +++ b/src/tag.c @@ -2333,15 +2333,17 @@ findtag_end: } static garray_T tag_fnames = GA_EMPTY; -static void found_tagfile_cb __ARGS((char_u *fname)); +static void found_tagfile_cb __ARGS((char_u *fname, void *cookie)); /* * Callback function for finding all "tags" and "tags-??" files in * 'runtimepath' doc directories. */ +/*ARGSUSED*/ static void -found_tagfile_cb(fname) +found_tagfile_cb(fname, cookie) char_u *fname; + void *cookie; { if (ga_grow(&tag_fnames, 1) == OK) ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = @@ -2390,7 +2392,7 @@ get_tagfname(first, buf) #else "doc/tags" #endif - , TRUE, found_tagfile_cb); + , TRUE, found_tagfile_cb, NULL); hf_idx = 0; } else if (*curbuf->b_p_tags != NUL) diff --git a/src/version.h b/src/version.h --- a/src/version.h +++ b/src/version.h @@ -36,5 +36,5 @@ #define VIM_VERSION_NODOT "vim70aa" #define VIM_VERSION_SHORT "7.0aa" #define VIM_VERSION_MEDIUM "7.0aa ALPHA" -#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Mar 28)" -#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Mar 28, compiled " +#define VIM_VERSION_LONG "VIM - Vi IMproved 7.0aa ALPHA (2005 Apr 15)" +#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.0aa ALPHA (2005 Apr 15, compiled "