Mercurial > vim
annotate src/testdir/sautest/autoload/foo.vim @ 16017:6230ff29c39a v8.1.1014
patch 8.1.1014: MS-Windows: /analyze only defined for non-debug version
commit https://github.com/vim/vim/commit/38db5276cd8f45fdf3dea8997e8994676e71b105
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 17 15:47:25 2019 +0100
patch 8.1.1014: MS-Windows: /analyze only defined for non-debug version
Problem: MS-Windows: /analyze only defined for non-debug version.
Solution: Move adding of /analyze up. (Taro Muraoka, closes https://github.com/vim/vim/issues/4114)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Mar 2019 16:00:05 +0100 |
parents | f7b2ecaeb79c |
children | 9ffec4eb8d33 |
rev | line source |
---|---|
13002
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 let g:loaded_foo_vim += 1 |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 let foo#bar = {} |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 func foo#bar.echo() |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 let g:called_foo_bar_echo += 1 |
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 endfunc |