aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/.clang-format18
-rw-r--r--src/nvim/api/vim.c3
-rw-r--r--src/nvim/version.c2
3 files changed, 4 insertions, 19 deletions
diff --git a/src/.clang-format b/src/.clang-format
deleted file mode 100644
index 5a910ff34b..0000000000
--- a/src/.clang-format
+++ /dev/null
@@ -1,18 +0,0 @@
-BasedOnStyle: Google
-Language: Cpp
-ColumnLimit: 80
-IndentWidth: 2
-TabWidth: 2
-UseTab: Never
-IndentCaseLabels: true
-BreakBeforeBraces: Linux
-AlignEscapedNewlinesLeft: false
-AllowShortFunctionsOnASingleLine: false
-SpacesBeforeTrailingComments: 2
-PenaltyReturnTypeOnItsOwnLine: 200
-AllowAllParametersOfDeclarationOnNextLine: false
-AllowShortIfStatementsOnASingleLine: false
-AllowShortLoopsOnASingleLine: false
-BinPackParameters: false
-BreakBeforeBinaryOperators: true
-ContinuationIndentWidth: 4
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 54b27477e0..4da61a30ef 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -743,6 +743,9 @@ void nvim_err_writeln(String str)
/// Gets the current list of buffer handles
///
+/// Includes unlisted (unloaded/deleted) buffers, like `:ls!`.
+/// Use |nvim_buf_is_loaded()| to check if a buffer is loaded.
+///
/// @return List of buffer handles
ArrayOf(Buffer) nvim_list_bufs(void)
FUNC_API_SINCE(1)
diff --git a/src/nvim/version.c b/src/nvim/version.c
index d23a007109..966ecfd719 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -2173,7 +2173,7 @@ void intro_message(int colon)
N_(NVIM_VERSION_LONG),
"",
N_("Nvim is open source and freely distributable"),
- N_("https://neovim.io/community"),
+ N_("https://neovim.io/#chat"),
"",
N_("type :help nvim<Enter> if you are new! "),
N_("type :checkhealth<Enter> to optimize Nvim"),