-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Add KeyStroke for start_no_timers (Start no pauses: CRTL+SHIFT+n) #5792
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
Conversation
Also this page needs to be updated afterwards: |
@@ -72,6 +72,7 @@ private static int getMenuShortcutKeyMask() { | |||
public static final KeyStroke OPEN = KeyStroke.getKeyStroke(KeyEvent.VK_O, CONTROL_MASK); | |||
public static final KeyStroke EXIT = KeyStroke.getKeyStroke(KeyEvent.VK_Q, CONTROL_MASK); | |||
public static final KeyStroke ACTION_START = KeyStroke.getKeyStroke(KeyEvent.VK_R, CONTROL_MASK); | |||
public static final KeyStroke ACTION_START_NO_PAUSE = KeyStroke.getKeyStroke(KeyEvent.VK_N, CONTROL_MASK | InputEvent.SHIFT_DOWN_MASK); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ctrl
+Shift
+N
feels a bit like a command to create something new. But as the menu shortcut uses n
already, this seems to be a natural choice here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Why close the PR? they aren't merge into main source? |
@milamberspace yes, you are absolutely right! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Done |
Description
Add an additional KeyStroke to Start a local test, skipping the Timers.
Motivation and Context
In our daily doing we setup load tests, using Timers.
For faster test preparation, we want to skip timers.
How Has This Been Tested?
./gradlew createDist
./bin/jmeter -t Testplan-with-pauses.jmx
Execute Testplan with Crtl-R
Execute Testplan with Ctrl-Shift-N
Types of changes