Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Thomas Schöps
kdevelop
Commits
58e6d4c6
Commit
58e6d4c6
authored
Jul 14, 2019
by
Daniel Mensinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
projectfilter: Include .clang-format by default
parent
88861caf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
plugins/projectfilter/filter.cpp
plugins/projectfilter/filter.cpp
+2
-1
No files found.
plugins/projectfilter/filter.cpp
View file @
58e6d4c6
...
...
@@ -74,7 +74,8 @@ SerializedFilters defaultFilters()
ret
<<
SerializedFilter
(
QStringLiteral
(
".*"
),
Filter
::
Targets
(
Filter
::
Files
|
Filter
::
Folders
));
// but do show some with special meaning
ret
<<
SerializedFilter
(
QStringLiteral
(
".gitignore"
),
Filter
::
Files
,
Filter
::
Inclusive
)
<<
SerializedFilter
(
QStringLiteral
(
".gitmodules"
),
Filter
::
Files
,
Filter
::
Inclusive
);
<<
SerializedFilter
(
QStringLiteral
(
".gitmodules"
),
Filter
::
Files
,
Filter
::
Inclusive
)
<<
SerializedFilter
(
QStringLiteral
(
".clang-format"
),
Filter
::
Files
,
Filter
::
Inclusive
);
// common vcs folders which we want to hide
static
const
QVector
<
QString
>
invalidFolders
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment