diff --git a/vimperator/regressions.js b/vimperator/regressions.js
index 7dc06b75..cd9cc584 100644
--- a/vimperator/regressions.js
+++ b/vimperator/regressions.js
@@ -174,10 +174,15 @@ commands.addUserCommand(["regr[essions]"],
if (!args.bang)
{
- liberator.echo(<>Running tests should always be done in a new profile.
> +
- <>It should not do any harm to your profile, but your current settings like options, abbreviations or mappings might not be in the same state as before running the tests.> +
- <>Just make sure, you don't :mkvimperatorrc, after running the tests.
> +
- <>Use :regressions! to skip this prompt.>);
+ liberator.echo(<>
+ Running tests should always be done in a new profile.
+
+ It should not do any harm to your profile, but your current settings like options,
+ abbreviations or mappings might not be in the same state as before running the tests.
+ Just make sure, you don't :mkvimperatorrc, after running the tests.
+
+ Use :regressions! to skip this prompt.
+ >);
commandline.input("Type 'yes' to run the tests:", function (res) { if (res == "yes") run(); } );
return;
}