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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keybinding for switching focus to splitwindow. Fix #631 #721

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/splitwindow.c
Expand Up @@ -491,9 +491,9 @@ void plugin_init(GeanyData *data)
keybindings_set_item(key_group, KB_SPLIT_VERTICAL, kb_activate,
0, 0, "split_vertical", _("Top and Bottom"), menu_items.vertical);
keybindings_set_item(key_group, KB_SPLIT_UNSPLIT, kb_activate,
0, 0, "split_unsplit", _("_Unsplit"), menu_items.unsplit);
0, 0, "split_unsplit", _("Unsplit"), menu_items.unsplit);
keybindings_set_item(key_group, KB_FOCUS_SPLIT_WINDOW, kb_activate,
0, 0, "focus_split_window", _("Switch _focus between windows"), menu_items.switch_focus);
0, 0, "focus_split_window", _("Switch focus between windows"), menu_items.switch_focus);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what about giving it a mnemonic, maybe f for focus?"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem. But I'm wondering, what are these mnemonics there for? Because Side by Side and Top and Bottom do not have.

}


Expand Down