Refresh generated neovim config
This commit is contained in:
@ -1165,16 +1165,36 @@ select_entry *diffview-actions-select_entry*
|
||||
multiple files, this will collapse or open the entry. In the option
|
||||
panel this will interact with the option under the cursor.
|
||||
|
||||
select_next_entry *diffview-actions-select_next_entry*
|
||||
[count] select_next_entry *diffview-actions-select_next_entry*
|
||||
Contexts: `view`, `file_panel`, `file_history_panel`
|
||||
|
||||
Select the entry following the subject.
|
||||
|
||||
select_prev_entry *diffview-actions-select_prev_entry*
|
||||
[count] select_prev_entry *diffview-actions-select_prev_entry*
|
||||
Contexts: `view`, `file_panel`, `file_history_panel`
|
||||
|
||||
Select the entry preceding the subject.
|
||||
|
||||
select_first_entry *diffview-actions-select_first_entry*
|
||||
Contexts: `view`, `file_panel`, `file_history_panel`
|
||||
|
||||
Select the first entry.
|
||||
|
||||
select_last_entry *diffview-actions-select_last_entry*
|
||||
Contexts: `view`, `file_panel`, `file_history_panel`
|
||||
|
||||
Select the last entry.
|
||||
|
||||
[count] select_next_commit *diffview-actions-select_next_commit*
|
||||
Contexts: `file_history_view`, `file_history_panel`
|
||||
|
||||
Select the commit following the subject.
|
||||
|
||||
[count] select_prev_commit *diffview-actions-select_prev_commit*
|
||||
Contexts: `file_history_view`, `file_history_panel`
|
||||
|
||||
Select the commit preceding the subject.
|
||||
|
||||
stage_all *diffview-actions-stage_all*
|
||||
Contexts: `diff_view`, `file_panel`
|
||||
|
||||
|
||||
@ -97,6 +97,8 @@ DEFAULT CONFIG *diffview.defaults*
|
||||
-- tabpage is a Diffview.
|
||||
{ "n", "<tab>", actions.select_next_entry, { desc = "Open the diff for the next file" } },
|
||||
{ "n", "<s-tab>", actions.select_prev_entry, { desc = "Open the diff for the previous file" } },
|
||||
{ "n", "[F", actions.select_first_entry, { desc = "Open the diff for the first file" } },
|
||||
{ "n", "]F", actions.select_last_entry, { desc = "Open the diff for the last file" } },
|
||||
{ "n", "gf", actions.goto_file_edit, { desc = "Open the file in the previous tabpage" } },
|
||||
{ "n", "<C-w><C-f>", actions.goto_file_split, { desc = "Open the file in a new split" } },
|
||||
{ "n", "<C-w>gf", actions.goto_file_tab, { desc = "Open the file in a new tabpage" } },
|
||||
@ -162,6 +164,8 @@ DEFAULT CONFIG *diffview.defaults*
|
||||
{ "n", "<c-f>", actions.scroll_view(0.25), { desc = "Scroll the view down" } },
|
||||
{ "n", "<tab>", actions.select_next_entry, { desc = "Open the diff for the next file" } },
|
||||
{ "n", "<s-tab>", actions.select_prev_entry, { desc = "Open the diff for the previous file" } },
|
||||
{ "n", "[F", actions.select_first_entry, { desc = "Open the diff for the first file" } },
|
||||
{ "n", "]F", actions.select_last_entry, { desc = "Open the diff for the last file" } },
|
||||
{ "n", "gf", actions.goto_file_edit, { desc = "Open the file in the previous tabpage" } },
|
||||
{ "n", "<C-w><C-f>", actions.goto_file_split, { desc = "Open the file in a new split" } },
|
||||
{ "n", "<C-w>gf", actions.goto_file_tab, { desc = "Open the file in a new tabpage" } },
|
||||
@ -186,9 +190,7 @@ DEFAULT CONFIG *diffview.defaults*
|
||||
{ "n", "y", actions.copy_hash, { desc = "Copy the commit hash of the entry under the cursor" } },
|
||||
{ "n", "L", actions.open_commit_log, { desc = "Show commit details" } },
|
||||
{ "n", "X", actions.restore_entry, { desc = "Restore file to the state from the selected entry" } },
|
||||
{ "n", "zr", actions.open_fold, { desc = "Expand fold" } },
|
||||
{ "n", "zo", actions.open_fold, { desc = "Expand fold" } },
|
||||
{ "n", "zm", actions.close_fold, { desc = "Collapse fold" } },
|
||||
{ "n", "zc", actions.close_fold, { desc = "Collapse fold" } },
|
||||
{ "n", "h", actions.close_fold, { desc = "Collapse fold" } },
|
||||
{ "n", "za", actions.toggle_fold, { desc = "Toggle fold" } },
|
||||
@ -206,6 +208,8 @@ DEFAULT CONFIG *diffview.defaults*
|
||||
{ "n", "<c-f>", actions.scroll_view(0.25), { desc = "Scroll the view down" } },
|
||||
{ "n", "<tab>", actions.select_next_entry, { desc = "Open the diff for the next file" } },
|
||||
{ "n", "<s-tab>", actions.select_prev_entry, { desc = "Open the diff for the previous file" } },
|
||||
{ "n", "[F", actions.select_first_entry, { desc = "Open the diff for the first file" } },
|
||||
{ "n", "]F", actions.select_last_entry, { desc = "Open the diff for the last file" } },
|
||||
{ "n", "gf", actions.goto_file_edit, { desc = "Open the file in the previous tabpage" } },
|
||||
{ "n", "<C-w><C-f>", actions.goto_file_split, { desc = "Open the file in a new split" } },
|
||||
{ "n", "<C-w>gf", actions.goto_file_tab, { desc = "Open the file in a new tabpage" } },
|
||||
|
||||
@ -35,7 +35,11 @@ diffview-actions-refresh_files diffview.txt /*diffview-actions-refresh_files*
|
||||
diffview-actions-restore_entry diffview.txt /*diffview-actions-restore_entry*
|
||||
diffview-actions-scroll_view diffview.txt /*diffview-actions-scroll_view*
|
||||
diffview-actions-select_entry diffview.txt /*diffview-actions-select_entry*
|
||||
diffview-actions-select_first_entry diffview.txt /*diffview-actions-select_first_entry*
|
||||
diffview-actions-select_last_entry diffview.txt /*diffview-actions-select_last_entry*
|
||||
diffview-actions-select_next_commit diffview.txt /*diffview-actions-select_next_commit*
|
||||
diffview-actions-select_next_entry diffview.txt /*diffview-actions-select_next_entry*
|
||||
diffview-actions-select_prev_commit diffview.txt /*diffview-actions-select_prev_commit*
|
||||
diffview-actions-select_prev_entry diffview.txt /*diffview-actions-select_prev_entry*
|
||||
diffview-actions-stage_all diffview.txt /*diffview-actions-stage_all*
|
||||
diffview-actions-toggle_files diffview.txt /*diffview-actions-toggle_files*
|
||||
|
||||
Reference in New Issue
Block a user