From 0030e9df601b932c61ccc19f456c72f27efb883c Mon Sep 17 00:00:00 2001 From: Nysa Date: Tue, 27 Aug 2013 20:51:55 -0500 Subject: [PATCH 1/2] Vim: Ignore .*.s[a-w][a-z] and .s[a-w][a-z] swap files .*.s[a-w][a-z] matches named swap files. .s[a-w][a-z] matches unnamed swap files. --- Global/vim.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/vim.gitignore b/Global/vim.gitignore index eadcec7a..427779d5 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,4 +1,5 @@ *.s[a-w][a-z] +.s[a-w][a-z] *.un~ Session.vim .netrwhist From c98c138ee1714c6245d38b31208cb474e1f83ef6 Mon Sep 17 00:00:00 2001 From: Nysa Date: Tue, 27 Aug 2013 21:04:19 -0500 Subject: [PATCH 2/2] Vim: Forgot to change *.s[a-w][a-z] to .*.s[a-w][a-z] --- Global/vim.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/vim.gitignore b/Global/vim.gitignore index 427779d5..56ecb404 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,4 +1,4 @@ -*.s[a-w][a-z] +.*.s[a-w][a-z] .s[a-w][a-z] *.un~ Session.vim