diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-01-16 12:14:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 21:14:59 +0100 |
commit | abbfaf286f26989b18377d4238f3cea9dc281149 (patch) | |
tree | acd6d74360e8751b3e5d9333a91326956501a892 /runtime | |
parent | 0fad952a2b7d90d2c3215e8e3c50ae62233e2158 (diff) | |
download | rneovim-abbfaf286f26989b18377d4238f3cea9dc281149.tar.gz rneovim-abbfaf286f26989b18377d4238f3cea9dc281149.tar.bz2 rneovim-abbfaf286f26989b18377d4238f3cea9dc281149.zip |
logs: make kXDGCacheHome if it doesn't exist (#13758)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/starting.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 48b9aad58b..79459e74c3 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -1316,8 +1316,9 @@ file when reading and include: ============================================================================== Standard Paths *standard-path* -Nvim stores configuration and data in standard locations. Plugins are strongly -encouraged to follow this pattern also. Use |stdpath()| to get the paths. +Nvim stores configuration, data, and logs in standard locations. Plugins are +strongly encouraged to follow this pattern also. Use |stdpath()| to get the +paths. *base-directories* *xdg* The "base" (root) directories conform to the XDG Base Directory Specification. @@ -1338,12 +1339,12 @@ DATA DIRECTORY (DEFAULT) ~ Note: Throughout the user manual these defaults are used as placeholders, e.g. "~/.config" is understood to mean "$XDG_CONFIG_HOME or ~/.config". -LOG FILE *$NVIM_LOG_FILE* +LOG FILE *$NVIM_LOG_FILE* *E5010* Besides 'debug' and 'verbose', Nvim keeps a general log file for internal debugging, plugins and RPC clients. > :echo $NVIM_LOG_FILE -Usually the file is ~/.cache/nvim/log unless that path is inaccessible -or if $NVIM_LOG_FILE was set before |startup|. +By default, the file is located at stdpath('cache')/log unless that path +is inaccessible or if $NVIM_LOG_FILE was set before |startup|. vim:noet:tw=78:ts=8:ft=help:norl: |