aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-10-30 02:23:20 +0200
committerGitHub <noreply@github.com>2021-10-29 17:23:20 -0700
commit4472c56d54f447040f6e8610b261b7efa0d04eb6 (patch)
treefcc56104bc56529999bd18e90ecef1c80711ecf0 /src/nvim/vim.h
parent16d06fa3eb74ed96b659736ea504c31ed81c325e (diff)
downloadrneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.gz
rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.bz2
rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.zip
refactor: uncrustify #16090
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 7d49ca6ff1..3dba0a769d 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -24,7 +24,7 @@
#include "nvim/os/os_defs.h" // bring lots of system header files
/// length of a buffer to store a number in ASCII (64 bits binary + NUL)
-enum { NUMBUFLEN = 65 };
+enum { NUMBUFLEN = 65, };
#define MAX_TYPENR 65535
@@ -199,7 +199,7 @@ enum {
#define DIALOG_MSG_SIZE 1000 // buffer size for dialog_msg()
-enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext()
+enum { FOLD_TEXT_LEN = 51, }; //!< buffer size for get_foldtext()
// Maximum length of key sequence to be mapped.