Mercurial > vim
view src/proto/vim9cmds.pro @ 29684:d6c90b936159 v9.0.0182
patch 9.0.0182: quarto files are not recognized
Commit: https://github.com/vim/vim/commit/3a9687fb2749cb3da6e3bbf60cb9eaa81f7889ae
Author: smjonas <jonas.strittmatter@gmx.de>
Date: Wed Aug 10 11:48:10 2022 +0100
patch 9.0.0182: quarto files are not recognized
Problem: Quarto files are not recognized.
Solution: Recognize quarto files by the extension. (Jonas Strittmatter,
closes #10880)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 10 Aug 2022 13:00:07 +0200 |
parents | 4b23672d1f0e |
children | 6cf788ab844c |
line wrap: on
line source
/* vim9cmds.c */ void free_locals(cctx_T *cctx); int check_vim9_unlet(char_u *name); char_u *compile_unletlock(char_u *arg, exarg_T *eap, cctx_T *cctx); void drop_scope(cctx_T *cctx); char_u *compile_if(char_u *arg, cctx_T *cctx); char_u *compile_elseif(char_u *arg, cctx_T *cctx); char_u *compile_else(char_u *arg, cctx_T *cctx); char_u *compile_endif(char_u *arg, cctx_T *cctx); char_u *compile_for(char_u *arg_start, cctx_T *cctx); char_u *compile_endfor(char_u *arg, cctx_T *cctx); char_u *compile_while(char_u *arg, cctx_T *cctx); char_u *compile_endwhile(char_u *arg, cctx_T *cctx); char_u *compile_continue(char_u *arg, cctx_T *cctx); char_u *compile_break(char_u *arg, cctx_T *cctx); char_u *compile_block(char_u *arg, cctx_T *cctx); void compile_endblock(cctx_T *cctx); char_u *compile_try(char_u *arg, cctx_T *cctx); char_u *compile_catch(char_u *arg, cctx_T *cctx); char_u *compile_finally(char_u *arg, cctx_T *cctx); char_u *compile_endtry(char_u *arg, cctx_T *cctx); char_u *compile_throw(char_u *arg, cctx_T *cctx); char_u *compile_eval(char_u *arg, cctx_T *cctx); char_u *compile_mult_expr(char_u *arg, int cmdidx, cctx_T *cctx); char_u *compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx); char_u *compile_exec(char_u *line_arg, exarg_T *eap, cctx_T *cctx); char_u *compile_script(char_u *line, cctx_T *cctx); char_u *compile_substitute(char_u *arg, exarg_T *eap, cctx_T *cctx); char_u *compile_redir(char_u *line, exarg_T *eap, cctx_T *cctx); char_u *compile_cexpr(char_u *line, exarg_T *eap, cctx_T *cctx); char_u *compile_return(char_u *arg, int check_return_type, int legacy, cctx_T *cctx); int check_global_and_subst(char_u *cmd, char_u *arg); /* vim: set ft=c : */