vim: Add debug panel ex command (#33560)
Added :Debug to open debug panel, also added [:display](https://neovim.io/doc/user/change.html#%3Adisplay), alias to :reg Release Notes: - N/A
This commit is contained in:
parent
bbf16bda75
commit
ba4fc1bcfc
2 changed files with 3 additions and 0 deletions
|
@ -1067,6 +1067,7 @@ fn generate_commands(_: &App) -> Vec<VimCommand> {
|
|||
)
|
||||
}),
|
||||
VimCommand::new(("reg", "isters"), ToggleRegistersView).bang(ToggleRegistersView),
|
||||
VimCommand::new(("di", "splay"), ToggleRegistersView).bang(ToggleRegistersView),
|
||||
VimCommand::new(("marks", ""), ToggleMarksView).bang(ToggleMarksView),
|
||||
VimCommand::new(("delm", "arks"), ArgumentRequired)
|
||||
.bang(DeleteMarks::AllLocal)
|
||||
|
@ -1085,6 +1086,7 @@ fn generate_commands(_: &App) -> Vec<VimCommand> {
|
|||
VimCommand::str(("No", "tifications"), "notification_panel::ToggleFocus"),
|
||||
VimCommand::str(("A", "I"), "agent::ToggleFocus"),
|
||||
VimCommand::str(("G", "it"), "git_panel::ToggleFocus"),
|
||||
VimCommand::str(("D", "ebug"), "debug_panel::ToggleFocus"),
|
||||
VimCommand::new(("noh", "lsearch"), search::buffer_search::Dismiss),
|
||||
VimCommand::new(("$", ""), EndOfDocument),
|
||||
VimCommand::new(("%", ""), EndOfDocument),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue