From 49e0cbef7f1c8b73b785c54ffa084e83ec60957b Mon Sep 17 00:00:00 2001 From: Zocker1999NET Date: Sun, 10 Jul 2016 17:55:15 +0200 Subject: [PATCH] =?UTF-8?q?Ignorier-Listen=20erweitert=20*=20VS=20Code=20z?= =?UTF-8?q?eigt=20nun=20s=C3=A4mtliche=20Text-Dokumente=20nicht=20mehr=20i?= =?UTF-8?q?m=20internen=20Explorer=20an=20*=20Git=20ignoriert=20nun=20auch?= =?UTF-8?q?=20den=20docs=20Ordner=20von=20Greenfoot,=20welcher=20genutzt?= =?UTF-8?q?=20wird,=20um=20die=20aus=20dem=20Code=20generierten=20Dokument?= =?UTF-8?q?ationen=20abzuspeichern.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .vscode/settings.json | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4a9da91..871ec2b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ hs_err_pid* *.greenfoot .vscode/ *~$* +doc/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 2d95c3e..2e5e653 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,9 +9,16 @@ "project.greenfoot": true, "*.class": true, "*.ctxt": true, + "doc": true, + "sounds": true, // Excel Tabellen "**/*.ods": true, "**/*.xls": true, - "**/*.xlsx": true + "**/*.xlsx": true, + // Dokumente + "**/*.doc": true, + "**/*.docx": true, + "**/*.pdf": true, + "**/*.xcf": true } } \ No newline at end of file