aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-06-20 10:12:07 -0400
committerJames McCoy <jamessan@jamessan.com>2016-07-08 01:43:36 -0400
commit8ecdc571b0cf679c5195088d140f2988bcbe87e1 (patch)
treeb8b19e35a0d0109c3a366af490f09dac135b47d0 /src/nvim/globals.h
parent85e539c99609cec0b5a0eab3aded394d0bbab555 (diff)
downloadrneovim-8ecdc571b0cf679c5195088d140f2988bcbe87e1.tar.gz
rneovim-8ecdc571b0cf679c5195088d140f2988bcbe87e1.tar.bz2
rneovim-8ecdc571b0cf679c5195088d140f2988bcbe87e1.zip
vim-patch:7.4.1499
Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi) https://github.com/vim/vim/commit/be82c254862e475a582c0717455e1db6bf96b0d0
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 7f91903106..bfe2ec7fc7 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -1223,6 +1223,7 @@ EXTERN char_u e_invalpat[] INIT(= N_(
EXTERN char_u e_bufloaded[] INIT(= N_("E139: File is loaded in another buffer"));
EXTERN char_u e_notset[] INIT(= N_("E764: Option '%s' is not set"));
EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name"));
+EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\""));
EXTERN char_u e_unsupportedoption[] INIT(= N_("E519: Option not supported"));