diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-13 15:38:42 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-13 15:38:42 -0500 |
commit | 9af6485e8b91612382ee96130e8664dd7531d39c (patch) | |
tree | bac07670f8afaca3aa6fa1ae2559699141a00acf /src/nvim/globals.h | |
parent | 0ba6cb2f5cfe49ee1ee66c6246a77947af74ae5e (diff) | |
parent | e10670ac3bccbea707432bdb54e18639cf2e125f (diff) | |
download | rneovim-9af6485e8b91612382ee96130e8664dd7531d39c.tar.gz rneovim-9af6485e8b91612382ee96130e8664dd7531d39c.tar.bz2 rneovim-9af6485e8b91612382ee96130e8664dd7531d39c.zip |
Merge pull request #1622 from klusark/test29
default to 'nocompatible'
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 233d326a40..5f542eec0c 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -1229,6 +1229,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_unsupportedoption[] INIT(= N_("E519: Option not supported")); EXTERN char top_bot_msg[] INIT(= N_("search hit TOP, continuing at BOTTOM")); |