]> granicus.if.org Git - vim/commitdiff
patch 8.2.1754: completion with spell checking not tested v8.2.1754
authorBram Moolenaar <Bram@vim.org>
Sun, 27 Sep 2020 11:58:38 +0000 (13:58 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 27 Sep 2020 11:58:38 +0000 (13:58 +0200)
Problem:    Completion with spell checking not tested.
Solution:   Add a test case. (Dominique PellĂ©, closes #7024)

src/testdir/test_spell.vim
src/version.c

index 4beff9a1a14d4e24fcf11d6aece432bee784e791..db40cd24a65d7579f1ad44a95c5e004c0cc5a517 100644 (file)
@@ -120,6 +120,43 @@ foobar/?
   set spell&
 endfunc
 
+func Test_spelllang_inv_region()
+  set spell spelllang=en_xx
+  let messages = GetMessages()
+  call assert_equal('Warning: region xx not supported', messages[-1])
+  set spell& spelllang&
+endfunc
+
+func Test_compl_with_CTRL_X_CTRL_K_using_spell()
+  " When spell checking is enabled and 'dictionary' is empty,
+  " CTRL-X CTRL-K in insert mode completes using the spelling dictionary.
+  new
+  set spell spelllang=en dictionary=
+
+  set ignorecase
+  call feedkeys("Senglis\<c-x>\<c-k>\<esc>", 'tnx')
+  call assert_equal(['English'], getline(1, '$'))
+  call feedkeys("SEnglis\<c-x>\<c-k>\<esc>", 'tnx')
+  call assert_equal(['English'], getline(1, '$'))
+
+  set noignorecase
+  call feedkeys("Senglis\<c-x>\<c-k>\<esc>", 'tnx')
+  call assert_equal(['englis'], getline(1, '$'))
+  call feedkeys("SEnglis\<c-x>\<c-k>\<esc>", 'tnx')
+  call assert_equal(['English'], getline(1, '$'))
+
+  set spelllang=en_us
+  call feedkeys("Stheat\<c-x>\<c-k>\<esc>", 'tnx')
+  call assert_equal(['theater'], getline(1, '$'))
+  set spelllang=en_gb
+  call feedkeys("Stheat\<c-x>\<c-k>\<esc>", 'tnx')
+  " FIXME: commented out, expected theatre bug got theater. See issue #7025.
+  " call assert_equal(['theatre'], getline(1, '$'))
+
+  bwipe!
+  set spell& spelllang& dictionary& ignorecase&
+endfunc
+
 func Test_spellreall()
   new
   set spell
index f3dbf2808aba0ef55a43cb357fa12f121539e5a5..1ee6801c9e0e81da0b0a7ad4fbc89ce616bce192 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1754,
 /**/
     1753,
 /**/