I am using the jline.ConsoleReader provided and adding an ActionListner for a key (say pressing 'q') using
q. addTriggerAction('q', new ActionListener(){ System.out.println("Triggered"); });
However after a certain time I need to stop triggering the action and remove the listener. How can I do that? I might need to add a new different ActionListener to the same action later