Hi,
am not sure if this is a bug or feature, but the keybinding filtering function is called enndlesly.
I wanted to use it to have an overview of the keybindings and implement a plugin like the nvim "which-key" plugin.
@Condition
def unasigned_filter():
print("filter called")
return True #does not matter if I return True or False
@bindings.add("<any>", filter=unasigned_filter)
def _(event):
return
thanks
Z