aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/file_search.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-01-23 15:32:11 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-01-23 15:49:37 +0100
commit73da522d73c5d686c122ea4482d03e576a6a242c (patch)
treec1964417c81554ddb1ba212aec74ac532eb0d56d /src/nvim/file_search.c
parent7c7c5a80a46b38067e8288e1e3ccd2b9c7c73b6e (diff)
downloadrneovim-73da522d73c5d686c122ea4482d03e576a6a242c.tar.gz
rneovim-73da522d73c5d686c122ea4482d03e576a6a242c.tar.bz2
rneovim-73da522d73c5d686c122ea4482d03e576a6a242c.zip
errors: Introduce "E856: Filename too long"
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r--src/nvim/file_search.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c
index 122cea7466..73faac0a43 100644
--- a/src/nvim/file_search.c
+++ b/src/nvim/file_search.c
@@ -191,6 +191,8 @@ typedef struct ff_search_ctx_T {
# include "file_search.c.generated.h"
#endif
+static char_u e_pathtoolong[] = N_("E854: path too long for completion");
+
/*
* Initialization routine for vim_findfile().
*