Mercurial > vim
annotate src/testdir/sautest/autoload/auto9.vim @ 23446:b1dbbc81a011 v8.2.2266
patch 8.2.2266: Vim9: it can be hard to see where white space is missing
Commit: https://github.com/vim/vim/commit/e7a73e07625b64a40671a0007ad38a34cbe9d1ee
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 1 19:17:55 2021 +0100
patch 8.2.2266: Vim9: it can be hard to see where white space is missing
Problem: Vim9: it can be hard to see where white space is missing.
Solution: Mention the text where the error was seen. (closes https://github.com/vim/vim/issues/7580)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 01 Jan 2021 19:30:04 +0100 |
parents | b0b57d91671c |
children | 307341b9c227 |
rev | line source |
---|---|
21550
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 vim9script |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 func auto9#getsome() |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 return 'some' |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 endfunc |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 def auto9#add42(count: number): number |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 return count + 42 |
b0b57d91671c
patch 8.2.1325: Vim9: using Vim9 script for autaload not tested
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 enddef |