diff --git a/src/tools/ecode/commandpalette.cpp b/src/tools/ecode/commandpalette.cpp index 067e47bbb..ae987d0e4 100644 --- a/src/tools/ecode/commandpalette.cpp +++ b/src/tools/ecode/commandpalette.cpp @@ -75,8 +75,8 @@ CommandPalette::fuzzyMatch( const std::vector>& cmdPale std::vector> ret; for ( size_t i = 0; i < cmdPalette.size(); i++ ) { - int matchName = String::fuzzyMatch( cmdPalette[i][0], match, true, true ); - int matchKeybind = String::fuzzyMatch( cmdPalette[i][2], match, true, true ); + int matchName = String::fuzzyMatch( cmdPalette[i][0], match ); + int matchKeybind = String::fuzzyMatch( cmdPalette[i][2], match ); matchesMap.insert( { std::max( matchName, matchKeybind ), i } ); } for ( auto& res : matchesMap ) {