Mercurial > vim
view src/proto/if_python.pro @ 26516:9596c652420b v8.2.3787
patch 8.2.3787: no proper formatting of a C line comment after a statement
Commit: https://github.com/vim/vim/commit/6e371ecb27227ff8fedd8561d0f3880a17576848
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Dec 12 14:16:39 2021 +0000
patch 8.2.3787: no proper formatting of a C line comment after a statement
Problem: No proper formatting of a C line comment after a statement.
Solution: Find the start of the line comment, insert the comment leader and
indent the comment properly.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 12 Dec 2021 15:30:03 +0100 |
parents | 21b0a39d13ed |
children | a0b0c1e07064 |
line wrap: on
line source
/* if_python.c */ int python_enabled(int verbose); void python_end(void); int python_loaded(void); void ex_python(exarg_T *eap); void ex_pyfile(exarg_T *eap); void ex_pydo(exarg_T *eap); void python_buffer_free(buf_T *buf); void python_window_free(win_T *win); void python_tabpage_free(tabpage_T *tab); void do_pyeval(char_u *str, typval_T *rettv); int set_ref_in_python(int copyID); /* vim: set ft=c : */