Friday, April 21, 2017

Re: Swap directory changes when opening files under /media [Fedora]

On 2017-04-21, Ian wrote:
> I've just added this to my profile and it has fixed the problem:
>
> autocmd BufNewFile,BufReadPre /media/*,/run/media/*,/mnt/* set directory=~/.vim/swap//
>
> Though there might be a better way to just disable the other
> autocmd somehow.

To disable it, put this in your ~/.vimrc:

if exists("#fedora#BufNewFile#/media/*")
au! fedora BufNewFile /media/*
endif
if exists("#fedora#BufNewFile#/mnt/*")
au! fedora BufNewFile /mnt/*
endif
if exists("#fedora#BufReadPre#/media/*")
au! fedora BufReadPre /media/*
endif
if exists("#fedora#BufReadPre#/mnt/*")
au! fedora BufReadPre /mnt/*
endif

That will test for the presence of each of those autocommand events
and patterns in the fedora group and remove them.

Regards,
Gary

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: