diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-15 21:15:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-15 21:15:36 +0200 |
commit | aa82f8b88fe82077740894dd387801384e0558b6 (patch) | |
tree | b03732aa27ed20915b0bc6440b28f16098f14922 /src/nvim/globals.h | |
parent | 987619ddd73e792dc04b1a408b92cef2abb52bef (diff) | |
download | rneovim-aa82f8b88fe82077740894dd387801384e0558b6.tar.gz rneovim-aa82f8b88fe82077740894dd387801384e0558b6.tar.bz2 rneovim-aa82f8b88fe82077740894dd387801384e0558b6.zip |
vim-patch:8.0.0716: "--clean", 'shadafile' #9907
Nvim notes:
- Nvim does not support "-u DEFAULTS", that change is omitted.
- Also add 'shadafile' as an alias to 'viminfofile'.
- Deprecate 'viminfofile'.
Problem: Not easy to start Vim cleanly without changing the viminfo file.
Not possible to know whether the -i command line flag was used.
Solution: Add the --clean command line argument. Add the 'viminfofile'
option. Add "-u DEFAULTS".
https://github.com/vim/vim/commit/c4da113ef98dcfd6f2a088b1693c0317dcb5bf42
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index b529357dea..79af4a8ce3 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -754,7 +754,6 @@ EXTERN int skip_redraw INIT(= FALSE); /* skip redraw once */ EXTERN int do_redraw INIT(= FALSE); /* extra redraw once */ EXTERN int need_highlight_changed INIT(= true); -EXTERN char *used_shada_file INIT(= NULL); // name of the ShaDa file to use EXTERN FILE *scriptout INIT(= NULL); ///< Stream to write script to. |