diff options
author | Drew Neil <andrew.jr.neil@gmail.com> | 2017-11-16 22:41:16 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-16 23:41:16 +0100 |
commit | 59b0d9f62d163f1caa60c4b656fef51f8a13cef6 (patch) | |
tree | 297c6196b5ab18bc9685b2bbfcf7cc6e5352a2e6 | |
parent | f8d40e7d53d864b4ce22258a5696bae108e5ce2a (diff) | |
download | rneovim-59b0d9f62d163f1caa60c4b656fef51f8a13cef6.tar.gz rneovim-59b0d9f62d163f1caa60c4b656fef51f8a13cef6.tar.bz2 rneovim-59b0d9f62d163f1caa60c4b656fef51f8a13cef6.zip |
doc: Fix pathshorten() example (#7571)
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 11f549cd05..4a0f76c64b 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5811,7 +5811,7 @@ pathshorten({expr}) *pathshorten()* components in the path are reduced to single letters. Leading '~' and '.' characters are kept. Example: > :echo pathshorten('~/.config/nvim/autoload/file1.vim') -< ~/.v/a/file1.vim ~ +< ~/.c/n/a/file1.vim ~ It doesn't matter if the path exists or not. pow({x}, {y}) *pow()* |