Browse Source

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 _.
pull/765/head
Martín Blech 10 years ago
parent
commit
464ae2642b
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Global/vim.gitignore

+ 2
- 2
Global/vim.gitignore View File

@@ -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

Loading…
Cancel
Save