aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/deprecated.txt
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc/deprecated.txt')
-rw-r--r--runtime/doc/deprecated.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/runtime/doc/deprecated.txt b/runtime/doc/deprecated.txt
new file mode 100644
index 0000000000..6997d331e4
--- /dev/null
+++ b/runtime/doc/deprecated.txt
@@ -0,0 +1,48 @@
+*deprecated.txt* {Nvim}
+
+
+ NVIM REFERENCE MANUAL
+
+
+Nvim *deprecated*
+
+The items listed below are "deprecated". This means they will be removed in
+the future. They should not be used in new scripts, and old scripts should be
+updated.
+
+==============================================================================
+
+Normal commands ~
+*]f*
+*[f* Same as "gf".
+
+
+Commands ~
+*:rv*
+*:rviminfo* Deprecated alias to |:rshada| command.
+*:wv*
+*:wviminfo* Deprecated alias to |:wshada| command.
+
+
+Events ~
+*EncodingChanged* Never fired; 'encoding' is always "utf-8".
+*FileEncoding* Never fired; equivalent to |EncodingChanged|.
+
+Highlight groups ~
+*hl-VisualNOS* Obsolete. |vim-differences| {Nvim}
+
+Functions ~
+*buffer_exists()* Obsolete name for |bufexists()|.
+*buffer_name()* Obsolete name for |bufname()|.
+*buffer_number()* Obsolete name for |bufnr()|.
+*file_readable()* Obsolete name for |filereadable()|.
+*highlight_exists()* Obsolete name for |hlexists()|.
+*highlightID()* Obsolete name for |hlID()|.
+*last_buffer_nr()* Obsolete name for bufnr("$").
+
+Options ~
+*'fe'* 'fenc'+'enc' before Vim 6.0; no longer used.
+*'vi'*
+*'viminfo'* Deprecated alias to 'shada' option.
+
+ vim:tw=78:ts=8:ft=help:norl: