Skip to content
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

Fix mouse mode bindings with multiple actions #7959

Merged
merged 1 commit into from
May 16, 2024

Commits on May 16, 2024

  1. Fix mouse mode bindings with multiple actions

    The following config was broken:
    ```
      [mouse]
      bindings = [
      { mouse = "Right", mods = "Shift", action = "Copy"            },
      { mouse = "Right", mods = "Shift", action = "ClearSelection"  },
      ]
    ```
    
    Only the first action was applied. Change to allow more than one exact
    match in mouse mode with shift held, but keep the logic to not allow
    fallback search if any exact match was found.
    
    Fixes: 1a143d1 (Fix trigger of normal bindings in mouse mode)
    EBADBEEF committed May 16, 2024
    Configuration menu
    Copy the full SHA
    ad68a71 View commit details
    Browse the repository at this point in the history