Mercurial > vim
view src/proto/if_lua.pro @ 18707:e190e64d253b v8.1.2345
patch 8.1.2345: .cjs files are not recognized as Javascript
Commit: https://github.com/vim/vim/commit/c1faf3dc3879e8a5e486f31445b5a5753dcbc6a3
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 26 13:43:40 2019 +0100
patch 8.1.2345: .cjs files are not recognized as Javascript
Problem: .cjs files are not recognized as Javascript.
Solution: Add the *.cjs pattern. (closes https://github.com/vim/vim/issues/5268)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 26 Nov 2019 13:45:05 +0100 |
parents | 1a5d34492798 |
children | 054ba681412d |
line wrap: on
line source
/* if_lua.c */ int lua_enabled(int verbose); void lua_end(void); void ex_lua(exarg_T *eap); void ex_luado(exarg_T *eap); void ex_luafile(exarg_T *eap); void lua_buffer_free(buf_T *o); void lua_window_free(win_T *o); void do_luaeval(char_u *str, typval_T *arg, typval_T *rettv); int set_ref_in_lua(int copyID); /* vim: set ft=c : */