diff --git a/crates/vim/src/command.rs b/crates/vim/src/command.rs index abc7a31aa8468184e934df205c66b1ec32d15196..2fa75c85797353ac1507f0231eba7eb36f9522d2 100644 --- a/crates/vim/src/command.rs +++ b/crates/vim/src/command.rs @@ -690,6 +690,7 @@ fn generate_commands(_: &AppContext) -> Vec { VimCommand::new(("0", ""), StartOfDocument), VimCommand::new(("e", "dit"), editor::actions::ReloadFile) .bang(editor::actions::ReloadFile), + VimCommand::new(("cpp", "link"), editor::actions::CopyPermalinkToLine).range(act_on_range), ] }