Skip to content

Commit

Permalink
Git-ignore VIM temporary files (shader-slang#5047)
Browse files Browse the repository at this point in the history
Following git-ignore rules are added to ignore VIM temporary files:
- *~: Ignores all files ending with a tilde (~), which are Vim's backup files.
- .*.swp: Ignores Vim swap files, which have .swp extension.
- .*.swo: Ignores Vim swap files created when a .swp file already exists.

Co-authored-by: Yong He <yonghe@outlook.com>
  • Loading branch information
jkwak-work and csyonghe authored Sep 10, 2024
1 parent 1c6e241 commit d33fad8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,8 @@ vkd3d-proton.cache
vkd3d-proton.cache.write
*_d3d11.log
*_dxgi.log

# Vim temporary files
*~
.*.swp
.*.swo

0 comments on commit d33fad8

Please sign in to comment.