]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0393: 'viewdir' not respecting $XDG_CONFIG_HOME v9.1.0393
authorChristian Brabandt <cb@256bit.org>
Sat, 4 May 2024 07:48:15 +0000 (09:48 +0200)
committerChristian Brabandt <cb@256bit.org>
Sat, 4 May 2024 07:48:15 +0000 (09:48 +0200)
Problem:  'viewdir' not respecting $XDG_CONFIG_HOME
          (Danilo Rezende, after v9.1.327)
Solution: adjust 'viewdir' option when enabling XDG config mode

fixes: #14680
closes: #14708

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/options.txt
runtime/doc/starting.txt
src/option.c
src/os_unix.h
src/testdir/test_xdg.vim
src/version.c

index 806f5f0b80dbe81e164c8c80acc3fd165183a44b..795a5d014e3906d761c4a7258d714c856eaf9d19 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2024 Mar 29
+*options.txt*  For Vim version 9.1.  Last change: 2024 May 02
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -6683,7 +6683,8 @@ A jump table for the options with a short description can be found at |Q_op|.
 <
                                *'runtimepath'* *'rtp'* *vimfiles*
 'runtimepath' 'rtp'    string  (default:
-                                       Unix:  "$HOME/.vim,
+                                       Unix:  "$HOME/.vim or
+                                               $XDG_CONFIG_HOME/vim,
                                                $VIM/vimfiles,
                                                $VIMRUNTIME,
                                                $VIM/vimfiles/after,
@@ -6735,6 +6736,8 @@ A jump table for the options with a short description can be found at |Q_op|.
 
        And any other file searched for with the |:runtime| command.
 
+       For $XDG_CONFIG_HOME see |xdg-base-dir|.
+
        The defaults for most systems are setup to search five locations:
        1. In your home directory, for your personal preferences.
        2. In a system-wide Vim directory, for preferences from the system
@@ -8986,13 +8989,15 @@ A jump table for the options with a short description can be found at |Q_op|.
                                                *'viewdir'* *'vdir'*
 'viewdir' 'vdir'       string  (default for Amiga: "home:vimfiles/view",
                                         for Win32: "$HOME/vimfiles/view",
-                                        for Unix: "$HOME/.vim/view",
+                                        for Unix: "$HOME/.vim/view" or
+                                                  "$XDG_CONFIG_HOME/vim/view"
                                         for macOS: "$VIM/vimfiles/view",
                                         for VMS: "sys$login:vimfiles/view")
                        global
                        {not available when compiled without the |+mksession|
                        feature}
        Name of the directory where to store files for |:mkview|.
+       For $XDG_CONFIG_HOME see |xdg-base-dir|.
        This option cannot be set from a |modeline| or in the |sandbox|, for
        security reasons.
 
index b83a61e002f9f40fafb07efff572cce45c355ff6..71b620a20443d5a811fd76b3c66be357cc6395e5 100644 (file)
@@ -1,4 +1,4 @@
-*starting.txt*  For Vim version 9.1.  Last change: 2024 Apr 21
+*starting.txt*  For Vim version 9.1.  Last change: 2024 May 02
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1119,8 +1119,8 @@ feature backward compatible). However, if you want to migrate to use
 and `~/.vim/vimrc` file.
 
                                                        *xdg-runtime*
-When the |xdg-vimrc| is used the |'runtimepath'| will be modified accordingly
-to respect the |xdg-base-dir|: >
+When the |xdg-vimrc| is used the 'runtimepath' and 'packpath' options will be
+modified accordingly to respect the |xdg-base-dir|: >
 
     "$XDG_CONFIG_HOME/vim,$VIMRUNTIME,/after,$XDG_CONFIG_HOME/vim/after"
 <
index 0cd2823851eea46dd3c32ec7ca3fa2bce64080a4..2acc0d475ffc6f26ca2b6f4f4aca4291e498f55c 100644 (file)
@@ -417,6 +417,14 @@ set_init_xdg_rtp(void)
     options[opt_idx].def_val[VI_DEFAULT] = xdg_rtp;
     p_pp = xdg_rtp;
 
+#if defined(XDG_VDIR) && defined(FEAT_SESSION)
+    if ((opt_idx = findoption((char_u *)"viewdir")) < 0)
+       goto theend;
+
+    options[opt_idx].def_val[VI_DEFAULT] = (char_u *)XDG_VDIR;
+    p_vdir = (char_u *)XDG_VDIR;
+#endif
+
 theend:
     vim_free(vimrc1);
     vim_free(vimrc2);
index 6efd8ce7a134005b156eee5e5e821441580e8545..99184abe6cf9f21ed4519d3f77ea33a9474a357d 100644 (file)
@@ -347,6 +347,8 @@ typedef struct dsc$descriptor   DESC;
 #  define DFLT_VDIR    "sys$login:vimfiles/view"
 # else
 #  define DFLT_VDIR    "$HOME/.vim/view"       // default for 'viewdir'
+#  define XDG_VDIR     (mch_getenv("XDG_CONFIG_HOME") ? \
+       "$XDG_CONFIG_HOME/vim/view" : "~/.config/vim/view")
 # endif
 #endif
 
index 6f35b7254ad60ca67b139cd0a580ced796b91130..b9ec3c73148cf7fc53fd03bbe11c8f4ca35650a1 100644 (file)
@@ -80,6 +80,7 @@ func Test_xdg_runtime_files()
     call assert_match('XfakeHOME/\.vimrc', $MYVIMRC)
     call filter(g:, {idx, _ -> idx =~ '^rc'})
     call assert_equal(#{rc_one: 'one', rc: '.vimrc'}, g:)
+    call assert_match('XfakeHOME/\.vim/view', &viewdir)
     call writefile(v:errors, 'Xresult')
     quit
   END
@@ -94,6 +95,7 @@ func Test_xdg_runtime_files()
     call assert_match('XfakeHOME/\.vim/vimrc', $MYVIMRC)
     call filter(g:, {idx, _ -> idx =~ '^rc'})
     call assert_equal(#{rc_two: 'two', rc: '.vim/vimrc'}, g:)
+    call assert_match('XfakeHOME/\.vim/view', &viewdir)
     call writefile(v:errors, 'Xresult')
     quit
   END
@@ -112,6 +114,7 @@ func Test_xdg_runtime_files()
     call assert_match('XfakeHOME/\.config/vim/vimrc', $MYVIMRC, msg)
     call filter(g:, {idx, _ -> idx =~ '^rc'})
     call assert_equal(#{rc_three: 'three', rc: '.config/vim/vimrc'}, g:)
+    call assert_match('XfakeHOME/\.config/vim/view', &viewdir)
     call writefile(v:errors, 'Xresult')
     quit
   END
@@ -128,6 +131,7 @@ func Test_xdg_runtime_files()
     call assert_match('XfakeHOME/xdg/vim/vimrc', $MYVIMRC, msg)
     call filter(g:, {idx, _ -> idx =~ '^rc'})
     call assert_equal(#{rc_four: 'four', rc: 'xdg/vim/vimrc'}, g:)
+    call assert_match('XfakeHOME/xdg/vim/view, &viewdir)
     call writefile(v:errors, 'Xresult')
     quit
   END
index 1efc0814c7b1824f2d60a4b37ece10b16d30d3c2..5312bfef40100c82219eedd71d6fdebf2f664c7c 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    393,
 /**/
     392,
 /**/