We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f71a613 + 0a3d4c2 commit d4aa2ceCopy full SHA for d4aa2ce
1 file changed
ui/split.c
@@ -200,6 +200,22 @@ int split_keyaction(
200
return ActionQuit;
201
if (tolower(c) == 'r')
202
return ActionReset;
203
+ if (tolower(c) == 'p')
204
+ return ActionPause;
205
+ if (c == ' ')
206
+ return ActionResume;
207
+ if (tolower(c) == 'd')
208
+ return ActionDisplay;
209
+ if (tolower(c) == 'c')
210
+ return ActionCompact;
211
+ if (tolower(c) == 'e')
212
+ return ActionMPLS;
213
+ if (tolower(c) == 'n')
214
+ return ActionDNS;
215
+ if (c == '+')
216
+ return ActionScrollDown;
217
+ if (c == '-')
218
+ return ActionScrollUp;
219
220
return 0;
221
}
0 commit comments