.gitignore for SlickEdit
5 ignore rules for SlickEdit, ready to copy into your repository.
Cross-platform code editor and IDE
The complete .gitignore for SlickEdit
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:30:34 UTC
# Technologies: SlickEdit
### SlickEdit ###
*.vpw
*.vpj
*.vpwhistu
*.vpwhist
*.vtg
What these SlickEdit rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
*.vpw |
SlickEdit workspace and project files are ignored by default because typically they are considered to be developer-specific and not part of a project. |
*.vpj |
General |
*.vpwhistu |
SlickEdit workspace history and tag files always contain user-specific data so they should not be stored in a repository. |
*.vpwhist |
General |
*.vtg |
General |
How to use this .gitignore for SlickEdit
- Copy the SlickEdit rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.