Mercurial > vim
view src/proto/help.pro @ 33795:4af3b4cd8d2e v9.0.2116
patch 9.0.2116: No test for defining sign without attribute
Commit: https://github.com/vim/vim/commit/e670d17342ea05af253b0452afb980397fa143be
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Sun Nov 19 10:55:35 2023 +0100
patch 9.0.2116: No test for defining sign without attribute
Problem: No test for defining sign without attribute
Solution: Add test for defining sign without attributes
closes: #13544
Signed-off-by: Luuk van Baal <luukvbaal@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 19 Nov 2023 11:00:10 +0100 |
parents | f103da6ba95f |
children |
line wrap: on
line source
/* help.c */ void ex_help(exarg_T *eap); void ex_helpclose(exarg_T *eap); char_u *check_help_lang(char_u *arg); int help_heuristic(char_u *matched_string, int offset, int wrong_case); int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang); void cleanup_help_tags(int num_file, char_u **file); void prepare_help_buffer(void); void fix_help_buffer(void); void ex_exusage(exarg_T *eap); void ex_viusage(exarg_T *eap); void ex_helptags(exarg_T *eap); /* vim: set ft=c : */