Skip to content

vscode plugin shortcuts, comments missing whitespace fix #356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/src/utils/Copyright.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ namespace Copyright {
static inline const std::string GENERATED_C_CPP_FILE_HEADER =
"/*\n"
" * This file is automatically generated by UnitTestBot. "
"For further information see"
"For further information see "
PROJECT_HOMEPAGE_URL
"\n */\n";

static inline const std::string GENERATED_MAKEFILE_HEADER =
"# This file is automatically generated by UnitTestBot. "
"For further information see"
"For further information see "
PROJECT_HOMEPAGE_URL
"\n";

Expand Down
34 changes: 17 additions & 17 deletions vscode-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,27 +230,27 @@
{
"command": "unittestbot.generateFileTests",
"key": "ctrl+t",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.generateProjectLineTests",
"key": "ctrl+alt+l",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.generatePredicateTests",
"key": "ctrl+alt+p",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.generateAssertionFailTests",
"key": "ctrl+alt+f",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.generateFunctionTests",
"key": "ctrl+alt+m",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.generateClassTests",
Expand All @@ -270,27 +270,27 @@
{
"command": "unittestbot.menucommand.generateFileTests",
"key": "ctrl+t",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.menucommand.generateProjectLineTests",
"key": "ctrl+alt+l",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.menucommand.generatePredicateTests",
"key": "ctrl+alt+p",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.menucommand.generateAssertionFailTests",
"key": "ctrl+alt+f",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.menucommand.generateFunctionTests",
"key": "ctrl+alt+m",
"when": "config.unittestbot.advanced.enableDeveloperMode == true && (editorLangId == c || editorLangId == cpp)"
"when": "config.unittestbot.advanced.enableDeveloperMode == true && editorLangId =~ /(c|cpp)/"
},
{
"command": "unittestbot.menucommand.generateClassTests",
Expand Down Expand Up @@ -392,7 +392,7 @@
"unittestbot.utbot.editor.generate": [
{
"command": "unittestbot.menucommand.generateFileTests",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@1"
},
{
Expand All @@ -402,29 +402,29 @@
},
{
"command": "unittestbot.menucommand.generateFunctionTests",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@3"
},
{
"command": "unittestbot.menucommand.generateProjectLineTests",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@4"
},
{
"command": "unittestbot.menucommand.generateAssertionFailTests",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@5"
},
{
"command": "unittestbot.menucommand.generatePredicateTests",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@6"
}
],
"explorer/context": [
{
"command": "unittestbot.generateFileTests",
"when": "resourceLangId == c || resourceLangId == cpp",
"when": "resourceLangId =~ /(c|cpp)/",
"group": "UTBot@1"
},
{
Expand All @@ -443,7 +443,7 @@
"editor/context": [
{
"submenu": "unittestbot.utbot.editor.generate",
"when": "editorLangId == c || editorLangId == cpp",
"when": "editorLangId =~ /(c|cpp)/",
"group": "UTBot@1"
},
{
Expand Down