diff options
author | MartÃn Blech <martinblech@gmail.com> | 2013-09-07 23:12:37 -0300 |
---|---|---|
committer | Martin Blech <martinblech@gmail.com> | 2013-11-04 11:31:51 -0300 |
commit | 464ae2642b5fbee2528c24daa922e5ebef7c3c4c (patch) | |
tree | c337dcc4e72c94eae7560ecef2fc89a58d830915 /Global/vim.gitignore | |
parent | 8e05c7362184d4225a2a7c2149810104c37e0c08 (diff) | |
download | gitignore-464ae2642b5fbee2528c24daa922e5ebef7c3c4c.tar.gz gitignore-464ae2642b5fbee2528c24daa922e5ebef7c3c4c.zip |
Ignoring [._]*.sw[a-p] instead of *.s[a-w][a-z]
The old pattern was too broad and was making VIM ignore Scheme (*.scm) files.
Now it only matches files that start with . or _.
Diffstat (limited to 'Global/vim.gitignore')
-rw-r--r-- | Global/vim.gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Global/vim.gitignore b/Global/vim.gitignore index 56ecb404..6c5ee8df 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,5 +1,5 @@ -.*.s[a-w][a-z] -.s[a-w][a-z] +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] *.un~ Session.vim .netrwhist |