Skip to content
Snippets Groups Projects
Commit f089b930 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Switched completion to be case-insensitive by default

Quite a few people seem to prefer this and it is the default in Eclipse
and MSVC.

This applies to both C++ and QML completion.

Task-number: QTCREATORBUG-1474
parent 3bc20dbb
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ static const char * const spaceAfterFunctionNameKey = "SpaceAfterFunctionName";
using namespace TextEditor;
CompletionSettings::CompletionSettings()
: m_caseSensitivity(FirstLetterCaseSensitive)
: m_caseSensitivity(CaseInsensitive)
, m_autoInsertBrackets(true)
, m_partiallyComplete(true)
, m_spaceAfterFunctionName(false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment