aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds_defs.h
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-12-31 01:54:34 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-01-02 21:59:12 +0100
commit735aa4c4c89943b26f1d6ba0d3e076002490c09d (patch)
treea96add0d8cfc4d4b86b87786d6c3f45a2f3db9ec /src/nvim/ex_cmds_defs.h
parent3f35c69b23d1bc951f158e4e3d8e554f89bd1037 (diff)
downloadrneovim-735aa4c4c89943b26f1d6ba0d3e076002490c09d.tar.gz
rneovim-735aa4c4c89943b26f1d6ba0d3e076002490c09d.tar.bz2
rneovim-735aa4c4c89943b26f1d6ba0d3e076002490c09d.zip
refactor: remove redundant struct names
A struct can be anonymous if only its typedef is used.
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r--src/nvim/ex_cmds_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h
index 4abc286a96..89b8999674 100644
--- a/src/nvim/ex_cmds_defs.h
+++ b/src/nvim/ex_cmds_defs.h
@@ -128,7 +128,7 @@ struct aucmd_executable_t {
typedef char *(*LineGetter)(int, void *, int, bool);
/// Structure for command definition.
-typedef struct cmdname {
+typedef struct {
char *cmd_name; ///< Name of the command.
ex_func_T cmd_func; ///< Function with implementation of this command.
ex_preview_func_T cmd_preview_func; ///< Preview callback function of this command.