| /vim-8.2.3635/runtime/doc/ |
| H A D | spell.txt | 81 If the word is explicitly marked as bad word in 89 zw Like "zg" but mark the word as a wrong (bad) word. 108 Add {word} as a good word to 'spellfile', like with 112 :spe[llgood]! {word} Add {word} as a good word to the internal word list, 117 Add {word} as a wrong (bad) word to 'spellfile', as 121 :spellw[rong]! {word} Add {word} as a wrong (bad) word to the internal word 126 Add {word} as a rare word to 'spellfile', similar to 138 :spellr[rare]! {word} Add {word} as a rare word to the internal word 167 for a word that is not highlighted as a bad word, 1325 compound word. The word itself is not a good word. Example: [all …]
|
| H A D | usr_12.txt | 12 |12.1| Replace a word 19 |12.8| Find where a word is used 26 *12.1* Replace a word 29 another word: > 37 match the start of a word: > 42 a word: > 82 There is one catch: If one of the .cpp files does not contain the word 268 To display a man page for the word under the cursor, use this: > 310 *12.8* Find where a word is used 317 the word "frame_counter". To do this you use the command: > [all …]
|
| H A D | usr_03.txt | 31 To move the cursor forward one word, use the "w" command. Like most Vim 41 start of a word. 42 The "b" command moves backward to the start of the previous word: 49 which moves to the previous end of a word: 56 first word in the next line. Thus you can use this to move through a 60 A word ends at a non-word character, such as a ".", "-" or ")". To change 355 ?word 365 about upper or lowercase in a word, set the 'ignorecase' option: > 420 the word "the" only: > 425 use these start-of-word and end-of-word markers to only find whole words (you [all …]
|
| H A D | usr_04.txt | 47 of a word. If you use the "e" command to move to the end of a word, Vim 79 specifically, it deletes a word and then puts you in Insert mode. 188 cwfive<Esc> change the word to "five" 206 word: 305 a word with "dw", "P" will put it back just before the cursor. 395 If the cursor is in the middle of a word and you want to delete that word, you 406 space after the word is also deleted (or the white space before the word if at 486 dw delete from cursor to next start of word 487 db delete from cursor to previous start of word 488 diw delete word under the cursor (excluding white space) [all …]
|
| H A D | develop.txt | 496 and could be a misspelled often-used word. 505 1. Try changing the bad word a little bit and check for a match with a good 506 word. Or go through the list of good words, change them a little bit and 518 every position in the word. Also, a hashtable has the requirement that word 523 know how it is spelled. For example, the word "dictionary" might be written 532 walking through the trie of good words, soundfolding each word and 543 For some languages more than the original word list. 549 the bad word is quite different from the good word. 560 could store a word frequency with the word in the dictionary. However, this 561 requires storing a count per word. That degrades word tree compression a lot. [all …]
|
| H A D | usr_24.txt | 34 When you typed a whole word wrong, use CTRL-W: 86 <S-Left> one word left 87 <C-Left> one word left 88 <S-Right> one word right 89 <C-Right> one word right 123 a word, press CTRL-P, and Vim guesses the rest. 135 this case, it is "ch_", which matches with the word ch_array. So typing 146 finds the first word backwards, which is "ch_array". Typing CTRL-P again 382 word, for example a space: 415 ":iabbrev" is a long word to type. ":iab" works just as well. [all …]
|
| /vim-8.2.3635/src/ |
| H A D | spell.c | 1034 char_u *word, in valid_word_prefix() argument 1820 p = word; in count_common_word() 2954 p = word; in onecap_copy() 3224 t = word; in spell_soundfold_sal() 3420 STRMOVE(word + i + k0, word + i + k); in spell_soundfold_sal() 3423 c = word[i]; in spell_soundfold_sal() 3442 STRMOVE(word, word + i + 1); in spell_soundfold_sal() 3717 mch_memmove(word + i + k0, word + i + k, in spell_soundfold_wsal() 3721 c = word[i]; in spell_soundfold_wsal() 3745 mch_memmove(word, word + i + 1, in spell_soundfold_wsal() [all …]
|
| H A D | spellfile.c | 1146 char_u word[MAXWLEN]; in read_words_section() local 1156 word[i] = c; in read_words_section() 1157 if (word[i] == NUL) in read_words_section() 3429 char_u word[MAXWLEN]; in add_fromto() local 3902 p = word; in store_aff_word() 4384 char_u *word, in store_word() argument 4391 int ct = captype(word, word + len); in store_word() 4431 char_u *word, in tree_add_word() argument 4503 || (word[i] == NUL in tree_add_word() 4532 if (word[i] == NUL) in tree_add_word() [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | readline.vim | 214 \ forward-word 215 \ backward-word 241 \ upcase-word 242 \ downcase-word 250 \ kill-word 307 \ vi-prev-word 310 \ vi-end-word 319 \ vi-next-word 325 \ vi-prev-word 328 \ vi-end-word [all …]
|
| H A D | tcsh.vim | 86 \ backward-delete-word backward-kill-line backward-word 87 \ beginning-of-line capitalize-word change-case 88 \ change-till-end-of-line clear-screen complete-word 89 \ complete-word-fwd complete-word-back complete-word-raw 93 \ down-history downcase-word end-of-file end-of-line 95 \ expand-variables forward-char forward-word 97 \ history-search-forward insert-last-word i-search-fwd 104 \ set-mark-command spell-word spell-line stuff-char 108 \ universal-argument up-history upcase-word 109 \ vi-beginning-of-next-word vi-add vi-add-at-eol vi-chg-case [all …]
|
| H A D | exports.vim | 14 " Options: -word 19 " Settings: word= 23 " OptSet: -word=
|
| /vim-8.2.3635/src/proto/ |
| H A D | spell.pro | 4 int can_compound(slang_T *slang, char_u *word, char_u *flags); 6 int valid_word_prefix(int totprefcnt, int arridx, int flags, char_u *word, slang_T *slang, int cond… 15 void count_common_word(slang_T *lp, char_u *word, int len, int count); 19 int captype(char_u *word, char_u *end); 32 void onecap_copy(char_u *word, char_u *wcopy, int upper); 33 void allcap_copy(char_u *word, char_u *wcopy); 34 int nofold_len(char_u *fword, int flen, char_u *word); 36 char_u *eval_soundfold(char_u *word);
|
| /vim-8.2.3635/runtime/pack/dist/opt/matchit/autoload/ |
| H A D | matchit.vim | 115 if a:word != '' 116 " word given 117 if a:word !~ s:all 118 echohl WarningMsg|echo 'Missing rule for word:"'.a:word.'"'|echohl NONE 284 let word = strpart(word, 0, i-1) 347 let parsed = parsed . ":" . s:Resolve(ini, word, "word") 458 let word = a:target 462 let d = word[i] 492 let word = strpart(word, 0, i-1) . backref . strpart(word, i+1) 495 let word = substitute(word, s:notslash . '\zs:', '\\', 'g') [all …]
|
| /vim-8.2.3635/runtime/spell/ |
| H A D | fixdup.vim | 7 " Start below the word count. 10 let word = getline(lnum) variable 11 if word !~ '/' 12 if search('^' . word . '/', 'w') != 0 15 continue " don't increment lnum, it's already at the next word 27 echomsg "Deleted 1 duplicate word"
|
| H A D | README_en.txt | 50 If a word is not found in the dictionary or a word is there you think 204 other word lists is included. 275 Canadian word list. 408 If a word is not found in the dictionary or a word is there you think 562 other word lists is included. 633 Canadian word list. 2838 2019) mileometer (another word for the previous word) 6367 4517) Bel (another word for Baal) 7192 4434) non-word (added singular) 9279 5908) outdrunk (past participle of word before previous word) [all …]
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | ada.vim | 50 \ 'word': Item, 62 \ 'word': Item, 74 \ 'word': Item, 86 \ 'word': Item, 98 \ 'word': Item, 110 \ 'word': Item, 122 \ 'word': Item, 134 \ 'word': Item, 146 \ 'word': Item, 158 \ 'word': Item, [all …]
|
| H A D | xmlformat.vim | 170 for word in split(item, '\s\+\S\+\zs') 171 if match(word, '^\s\+$') > -1 175 let column += strdisplaywidth(word, column) 176 if match(word, "^\\s*\n\\+\\s*$") > -1 182 let add = s:Indent(s:Trim(word)) 188 let result[idx] = s:Indent(s:Trim(word)) 190 let result[idx] .= ' '. s:Trim(word)
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_popup.vim | 282 call complete(1, [{'word': 'foobar'}]) 888 " Select a word 1024 \ { 'word': 'Jan', 'menu': 'January' }, 1026 \ { 'word': 'Mar', 'menu': 'March' }, 1027 \ { 'word': 'Apr', 'menu': 'April' }, 1028 \ { 'word': 'May', 'menu': 'May' }, 1098 let g:word = get(g:item, 'word', v:null) 1111 call assert_equal('foo', g:word) 1113 call assert_equal('foobar', g:word) 1115 call assert_equal(v:null, g:word) [all …]
|
| H A D | test_spell.vim | 95 " Create a small word list to test that spellbadword('...') 174 " Common word count starts at 10, regular word count starts at 0. 238 " Test spellsuggest({word} [, {max} [, {capital}]]) 262 " ALLCAP word. Otherwise, if the first letter is UPPER then 339 " the 1st and 2nd suggestion should correct the word, but 548 \ ["bad", ["end", "bork", "word"]], 550 \ ["pro", ["bork", "word", "end"]], 556 \ ["wordend", ["word end", "word", "wordword"]], 557 \ ["wordstart", ["word start", "bork start"]], 759 " Check handling a word longer than MAXWLEN. [all …]
|
| H A D | test_spellfile.vim | 35 " zg fails for a non-identifier word 109 " word not found in wordlist 127 " word not in wordlist 143 " word not in wordlist 306 " SN_WORDS: very long word 483 # This is an example word list 493 " multiple encoding for a word 503 " unsupported encoding for a word 548 " non-ascii word 553 " keep case of a word [all …]
|
| /vim-8.2.3635/runtime/tutor/ |
| H A D | tutor.utf-8 | 189 ** Type dw to delete a word. ** 197 4. Type dw to make the word disappear. 350 1. To delete from the cursor up to the next word type: dw 351 2. To delete from the cursor up to the end of the word type: de 362 e (end of word), $ (end of the line), etc. 420 ** To change until the end of a word, type ce . ** 426 3. Type ce and the correct word (in this case, type ine ). 435 Notice that ce deletes the word and places you in Insert mode. 475 the word, c$ to change to the end of a line. 806 NOTE: You can also use y as an operator: yw yanks one word, [all …]
|
| H A D | tutor | 189 ** Type dw to delete a word. ** 197 4. Type dw to make the word disappear. 350 1. To delete from the cursor up to the next word type: dw 351 2. To delete from the cursor up to the end of the word type: de 362 e (end of word), $ (end of the line), etc. 420 ** To change until the end of a word, type ce . ** 426 3. Type ce and the correct word (in this case, type ine ). 435 Notice that ce deletes the word and places you in Insert mode. 475 the word, c$ to change to the end of a line. 806 NOTE: You can also use y as an operator: yw yanks one word, [all …]
|
| H A D | tutor.bg.utf-8 | 268 w - (word) до началото на следващата дума, като се ИЗКЛЮЧВА първата ѝ буква. 269 e - (end of word) до края на текущата дума, ВКЛЮЧИТЕЛНО последната буква. 389 движение - придвижване в текста, върху който се работи, например w (word), 481 2. Движенията са същите, например: w (word) и $ (край на ред).
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | gitrebase.vim | 21 function! s:choose(word) abort argument 22 …s/^\(\w\+\>\)\=\(\s*\)\ze\x\{4,40\}\>/\=(strlen(submatch(1)) == 1 ? a:word[0] : a:word) . substitu…
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | clojure.vim | 144 function! s:strip_namespace_and_macro_chars(word) argument 145 return substitute(a:word, "\\v%(.*/|[#'`~@^,]*)(.*)", '\1', '') 271 " - Check whether we are in a special position after a word in 278 " - If not, we check whether it is last word in the line. In that case 280 " - In any other case we use the column of the end of the word + 2. 296 " In case after the paren is a whitespace, we search for the next word. 302 " If we moved to another line, there is no word after the (. We
|