|
18 | 18 | }, |
19 | 19 | }); |
20 | 20 | await t.step({ |
21 | | - name: "dictionary.get() return the defautValue when the option is empty", |
| 21 | + name: "dictionary.get() return the defaultValue when the option is empty", |
22 | 22 | fn: async () => { |
23 | 23 | await denops.cmd("set dictionary&"); |
24 | 24 | assertEquals(await _generated.dictionary.get(denops), ""); |
|
54 | 54 | }); |
55 | 55 | await t.step({ |
56 | 56 | name: |
57 | | - "dictionary.getGlobal() return the defautValue when the option is empty", |
| 57 | + "dictionary.getGlobal() return the defaultValue when the option is empty", |
58 | 58 | fn: async () => { |
59 | 59 | await denops.cmd("setglobal dictionary&"); |
60 | 60 | await denops.cmd("setlocal dictionary=hello"); |
|
92 | 92 | }); |
93 | 93 | await t.step({ |
94 | 94 | name: |
95 | | - "dictionary.getLocal() return the defautValue when the option is empty", |
| 95 | + "dictionary.getLocal() return the defaultValue when the option is empty", |
96 | 96 | fn: async () => { |
97 | 97 | await denops.cmd("setglobal dictionary=hello"); |
98 | 98 | await denops.cmd("setlocal dictionary&"); |
@@ -140,7 +140,7 @@ test({ |
140 | 140 | }); |
141 | 141 | await t.step({ |
142 | 142 | name: |
143 | | - "dictionary.getBuffer() return the defautValue when the option is empty", |
| 143 | + "dictionary.getBuffer() return the defaultValue when the option is empty", |
144 | 144 | fn: async () => { |
145 | 145 | try { |
146 | 146 | const bufnr = await denops.call("bufnr") as number; |
@@ -196,7 +196,7 @@ test({ |
196 | 196 | }); |
197 | 197 | await t.step({ |
198 | 198 | name: |
199 | | - "colorcolumn.getWindow() return the defautValue when the option is empty", |
| 199 | + "colorcolumn.getWindow() return the defaultValue when the option is empty", |
200 | 200 | fn: async () => { |
201 | 201 | try { |
202 | 202 | await denops.cmd("setlocal colorcolumn&"); |
@@ -241,7 +241,7 @@ test({ |
241 | 241 | }, |
242 | 242 | }); |
243 | 243 | await t.step({ |
244 | | - name: "undolevels.get() return the defautValue when the option is empty", |
| 244 | + name: "undolevels.get() return the defaultValue when the option is empty", |
245 | 245 | fn: async () => { |
246 | 246 | await denops.cmd("set undolevels&"); |
247 | 247 | assertEquals(await _generated.undolevels.get(denops), 1000); |
@@ -274,7 +274,7 @@ test({ |
274 | 274 | }); |
275 | 275 | await t.step({ |
276 | 276 | name: |
277 | | - "undolevels.getGlobal() return the defautValue when the option is empty", |
| 277 | + "undolevels.getGlobal() return the defaultValue when the option is empty", |
278 | 278 | fn: async () => { |
279 | 279 | await denops.cmd("setglobal undolevels&"); |
280 | 280 | await denops.cmd("setlocal undolevels=123"); |
@@ -312,7 +312,7 @@ test({ |
312 | 312 | }); |
313 | 313 | await t.step({ |
314 | 314 | name: |
315 | | - "undolevels.getLocal() return the defautValue when the option is empty", |
| 315 | + "undolevels.getLocal() return the defaultValue when the option is empty", |
316 | 316 | fn: async () => { |
317 | 317 | await denops.cmd("setglobal undolevels=123"); |
318 | 318 | await denops.cmd("setlocal undolevels&"); |
@@ -360,7 +360,7 @@ test({ |
360 | 360 | }); |
361 | 361 | await t.step({ |
362 | 362 | name: |
363 | | - "undolevels.getBuffer() return the defautValue when the option is empty", |
| 363 | + "undolevels.getBuffer() return the defaultValue when the option is empty", |
364 | 364 | fn: async () => { |
365 | 365 | try { |
366 | 366 | const bufnr = await denops.call("bufnr") as number; |
@@ -413,7 +413,7 @@ test({ |
413 | 413 | }); |
414 | 414 | await t.step({ |
415 | 415 | name: |
416 | | - "foldlevel.getWindow() return the defautValue when the option is empty", |
| 416 | + "foldlevel.getWindow() return the defaultValue when the option is empty", |
417 | 417 | fn: async () => { |
418 | 418 | try { |
419 | 419 | await denops.cmd("setlocal foldlevel&"); |
@@ -455,7 +455,7 @@ test({ |
455 | 455 | }, |
456 | 456 | }); |
457 | 457 | await t.step({ |
458 | | - name: "autoread.get() return the defautValue when the option is empty", |
| 458 | + name: "autoread.get() return the defaultValue when the option is empty", |
459 | 459 | fn: async () => { |
460 | 460 | await denops.cmd("set autoread&"); |
461 | 461 | if (await denops.call("has", "nvim")) { |
@@ -496,7 +496,7 @@ test({ |
496 | 496 | }); |
497 | 497 | await t.step({ |
498 | 498 | name: |
499 | | - "autoread.getGlobal() return the defautValue when the option is empty", |
| 499 | + "autoread.getGlobal() return the defaultValue when the option is empty", |
500 | 500 | fn: async () => { |
501 | 501 | await denops.cmd("setglobal autoread&"); |
502 | 502 | await denops.cmd("setlocal autoread& autoread!"); |
@@ -543,7 +543,7 @@ test({ |
543 | 543 | }); |
544 | 544 | await t.step({ |
545 | 545 | name: |
546 | | - "autoread.getLocal() return the defautValue when the option is empty", |
| 546 | + "autoread.getLocal() return the defaultValue when the option is empty", |
547 | 547 | fn: async () => { |
548 | 548 | await denops.cmd("setglobal autoread& autoread!"); |
549 | 549 | await denops.cmd("setlocal autoread&"); |
@@ -600,7 +600,7 @@ test({ |
600 | 600 | }); |
601 | 601 | await t.step({ |
602 | 602 | name: |
603 | | - "autoread.getBuffer() return the defautValue when the option is empty", |
| 603 | + "autoread.getBuffer() return the defaultValue when the option is empty", |
604 | 604 | fn: async () => { |
605 | 605 | try { |
606 | 606 | const bufnr = await denops.call("bufnr") as number; |
@@ -656,7 +656,7 @@ test({ |
656 | 656 | }, |
657 | 657 | }); |
658 | 658 | await t.step({ |
659 | | - name: "list.getWindow() return the defautValue when the option is empty", |
| 659 | + name: "list.getWindow() return the defaultValue when the option is empty", |
660 | 660 | fn: async () => { |
661 | 661 | try { |
662 | 662 | await denops.cmd("setlocal list&"); |
|
0 commit comments