Update follow binding, remove unfollow binding

The previous binding to follow had ergonomics issues for the frequency that I think we'll want to use it. It would also conflict with the sub-word selection binding.

Now that moving the cursor etc unfollows, I don't think we need the follow binding.
This commit is contained in:
Nathan Sobo 2022-03-23 06:19:35 -06:00
parent 3298529ed1
commit 097bbe3e07

View file

@ -112,8 +112,7 @@ pub fn init(client: &Arc<Client>, cx: &mut MutableAppContext) {
cx.add_action(Workspace::toggle_sidebar_item); cx.add_action(Workspace::toggle_sidebar_item);
cx.add_action(Workspace::toggle_sidebar_item_focus); cx.add_action(Workspace::toggle_sidebar_item_focus);
cx.add_bindings(vec![ cx.add_bindings(vec![
Binding::new("cmd-alt-shift-F", FollowNextCollaborator, None), Binding::new("ctrl-alt-cmd-f", FollowNextCollaborator, None),
Binding::new("cmd-alt-shift-U", Unfollow, None),
Binding::new("cmd-s", Save, None), Binding::new("cmd-s", Save, None),
Binding::new("cmd-alt-i", DebugElements, None), Binding::new("cmd-alt-i", DebugElements, None),
Binding::new( Binding::new(