Skip to content

Commit

Permalink
Assigned terminal keycode to the ASN panel.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Dec 31, 2022
1 parent 4c995dc commit dd40519
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/goaccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -1115,13 +1115,18 @@ get_keys (Logs * logs) {
if (set_module_to (&gscroll, GEO_LOCATION) == 0)
render_screens (offset);
break;
#endif
case 38: /* Shift + 7 */
/* reset expanded module */
if (set_module_to (&gscroll, ASN) == 0)
render_screens (offset);
break;
#endif
case 42: /* Shift + 7 */
/* reset expanded module */
if (set_module_to (&gscroll, MIME_TYPE) == 0)
render_screens (offset);
break;
case 42: /* Shift + 8 */
case 40: /* Shift + 8 */
/* reset expanded module */
if (set_module_to (&gscroll, TLS_TYPE) == 0)
render_screens (offset);
Expand Down

0 comments on commit dd40519

Please sign in to comment.