Mercurial > vim
annotate src/proto/if_lua.pro @ 7372:6b057079a836 v7.4.991
commit https://github.com/vim/vim/commit/096c8bb40d51b22a4b1d761baf7bb79fb9e55a28
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 29 14:26:57 2015 +0100
patch 7.4.991
Problem: When running new style tests the output is not visible.
Solution: Add the testdir/messages file and show it. Update the list of
test names.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 29 Dec 2015 14:30:04 +0100 |
parents | 38add5a3d617 |
children | 1a5d34492798 |
rev | line source |
---|---|
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
1 /* if_lua.c */ |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
2 int lua_enabled __ARGS((int verbose)); |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
3 void lua_end __ARGS((void)); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
4 void ex_lua __ARGS((exarg_T *eap)); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
5 void ex_luado __ARGS((exarg_T *eap)); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
6 void ex_luafile __ARGS((exarg_T *eap)); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
7 void lua_buffer_free __ARGS((buf_T *buf)); |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
8 void lua_window_free __ARGS((win_T *win)); |
3450 | 9 void do_luaeval __ARGS((char_u *str, typval_T *arg, typval_T *rettv)); |
6565 | 10 int set_ref_in_lua __ARGS((int copyID)); |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
diff
changeset
|
11 /* vim: set ft=c : */ |