mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: format with uncrustify #15872
* refactor: format with uncrustify * refactor: fix function parameter comments
This commit is contained in:
@@ -6,32 +6,32 @@
|
||||
/// Nvim was forked from Vim 7.4.160.
|
||||
/// Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred).
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "nvim/api/private/helpers.h"
|
||||
#include "nvim/vim.h"
|
||||
#include "nvim/ascii.h"
|
||||
#include "nvim/buffer.h"
|
||||
#include "nvim/iconv.h"
|
||||
#include "nvim/version.h"
|
||||
#include "nvim/charset.h"
|
||||
#include "nvim/iconv.h"
|
||||
#include "nvim/lua/executor.h"
|
||||
#include "nvim/memline.h"
|
||||
#include "nvim/memory.h"
|
||||
#include "nvim/message.h"
|
||||
#include "nvim/screen.h"
|
||||
#include "nvim/strings.h"
|
||||
#include "nvim/lua/executor.h"
|
||||
#include "nvim/version.h"
|
||||
#include "nvim/vim.h"
|
||||
|
||||
// version info generated by the build system
|
||||
#include "auto/versiondef.h"
|
||||
|
||||
// for ":version", ":intro", and "nvim --version"
|
||||
#ifndef NVIM_VERSION_MEDIUM
|
||||
#define NVIM_VERSION_MEDIUM "v" STR(NVIM_VERSION_MAJOR)\
|
||||
"." STR(NVIM_VERSION_MINOR) "." STR(NVIM_VERSION_PATCH)\
|
||||
NVIM_VERSION_PRERELEASE
|
||||
# define NVIM_VERSION_MEDIUM "v" STR(NVIM_VERSION_MAJOR)\
|
||||
"." STR(NVIM_VERSION_MINOR) "." STR(NVIM_VERSION_PATCH)\
|
||||
NVIM_VERSION_PRERELEASE
|
||||
#endif
|
||||
#define NVIM_VERSION_LONG "NVIM " NVIM_VERSION_MEDIUM
|
||||
|
||||
@@ -50,23 +50,23 @@ char *version_cflags = "Compilation: " NVIM_VERSION_CFLAGS;
|
||||
|
||||
static char *features[] = {
|
||||
#ifdef HAVE_ACL
|
||||
"+acl",
|
||||
"+acl",
|
||||
#else
|
||||
"-acl",
|
||||
"-acl",
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_ICONV)
|
||||
"+iconv",
|
||||
"+iconv",
|
||||
#else
|
||||
"-iconv",
|
||||
"-iconv",
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_TUI
|
||||
"+tui",
|
||||
"+tui",
|
||||
#else
|
||||
"-tui",
|
||||
"-tui",
|
||||
#endif
|
||||
NULL
|
||||
NULL
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
|
Reference in New Issue
Block a user