diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-23 00:43:45 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-23 00:43:45 +1200 |
commit | a4960b6efa94c947bd2d5ec08c02bd50ba46eecd (patch) | |
tree | c9bcc5cdd8cc379821a6f5aa38dfbbb1fe0d0a74 | |
parent | Add manual page for phpcsff(1df) (diff) | |
download | dotfiles-a4960b6efa94c947bd2d5ec08c02bd50ba46eecd.tar.gz dotfiles-a4960b6efa94c947bd2d5ec08c02bd50ba46eecd.zip |
Add setting for 'viewdir' option
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | vim/vimrc | 11 |
2 files changed, 13 insertions, 1 deletions
@@ -595,7 +595,8 @@ install-vim-cache: $(VIMDIR)/cache/backup \ $(VIMDIR)/cache/spell \ $(VIMDIR)/cache/swap \ - $(VIMDIR)/cache/undo + $(VIMDIR)/cache/undo \ + $(VIMDIR)/cache/view install-vim-compiler: mkdir -p -- $(VIMDIR)/compiler @@ -242,6 +242,17 @@ if has#('persistent_undo') call path#Create($MYVIM.'/undo') endif +" Set up a directory for files generated by :mkview. To date, I think I have +" used this twice in my life, but may as well be consistent with the other +" directories of this type. This isn't a comma-separated list like the others +" ('backupdir', 'directory', 'spell', 'undodir') +" +if has#('mksession') + execute 'set viewdir=' + \.option#Escape(option#item#Escape($MYVIM.'/view')) + call path#Create($MYVIM.'/view') +endif + " Now that we have a bit more confidence in our runtime environment, set up " all of the filetype detection, plugin, and indent hooks. " |