Update generated nvim config
This commit is contained in:
1662
config/neovim/store/lazy-plugins/diffview.nvim/doc/diffview.txt
Normal file
1662
config/neovim/store/lazy-plugins/diffview.nvim/doc/diffview.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,217 @@
|
||||
================================================================================
|
||||
*diffview.changelog*
|
||||
|
||||
CHANGELOG
|
||||
|
||||
NOTE: This changelog only encompasses breaking changes.
|
||||
|
||||
*diffview.changelog-271*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/271
|
||||
|
||||
The config for log options has changed. In preparation of adding support of
|
||||
other VCS, the table is now divided into sub-tables per VCS type. This allows
|
||||
you to define different default log options for different VCS tools. To update
|
||||
your config, just move all your current log options into the new table key
|
||||
`git`:
|
||||
|
||||
Before: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_history_panel = {
|
||||
log_options = {
|
||||
single_file = {
|
||||
max_count = 512,
|
||||
follow = true,
|
||||
},
|
||||
multi_file = {
|
||||
max_count = 128,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
<
|
||||
|
||||
After: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_history_panel = {
|
||||
log_options = {
|
||||
git = {
|
||||
single_file = {
|
||||
max_count = 512,
|
||||
follow = true,
|
||||
},
|
||||
multi_file = {
|
||||
max_count = 128,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
<
|
||||
*diffview.changelog-190*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/190
|
||||
|
||||
This PR involves a major refactor of the layout system. The changes are made
|
||||
in preparation of the planned merge-tool, which is going to involve 3-way
|
||||
diffs, and possibly also 4-way diffs. Different entries in the same view may
|
||||
now use completely different window layouts. Thus the action `view_windo` has
|
||||
changed to reflect these changes. See |diffview-actions-view_windo| for more
|
||||
details on the new usage.
|
||||
|
||||
*diffview.changelog-169*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/169
|
||||
|
||||
The file history option panel is now able to accept multiple values separated
|
||||
by whitespace. This means that if you want to specify values with whitespace,
|
||||
you need to quote the value, or escape the whitespace with a backslash (`\`).
|
||||
|
||||
*diffview.changelog-151*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/151
|
||||
|
||||
The config for log options has changed. The table is now divided into the
|
||||
sub-tables `single_file`, and `multi_file`. This allows you to define
|
||||
different default log options for history targeting singular files, and
|
||||
history targeting multiple paths, and/or directories. To update your config,
|
||||
just move all your log options into the new table keys `single_file` and
|
||||
`multi_file`:
|
||||
|
||||
Before: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_history_panel = {
|
||||
log_options = {
|
||||
max_count = 512,
|
||||
follow = true,
|
||||
},
|
||||
},
|
||||
})
|
||||
<
|
||||
|
||||
After: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_history_panel = {
|
||||
log_options = {
|
||||
single_file = {
|
||||
max_count = 512,
|
||||
follow = true,
|
||||
},
|
||||
multi_file = {
|
||||
max_count = 128,
|
||||
-- follow = false -- `follow` only applies to single-file history
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
<
|
||||
|
||||
You only need to define the options you want to change from the defaults. To
|
||||
find all the available log options, see |diffview.git.LogOptions|.
|
||||
|
||||
Calling `:DiffviewFileHistory` with no args would previously target the file
|
||||
in the current buffer. This has now been changed to instead target the
|
||||
top-level of the working tree. This was changed because with how it worked
|
||||
before, there was effectively no way to get the file history equivalent of
|
||||
running `git log` with no path args. If your cwd was some subdirectory of the
|
||||
working tree, and you wanted the full file history of the tree, you would have
|
||||
to manually type out the path to the top-level. On the contrary, getting the
|
||||
history for the current file is always as simple as just using `%`, which
|
||||
expands to the current file name.
|
||||
|
||||
To get the file history for the current file like before, simply run: >
|
||||
|
||||
:DiffviewFileHistory %
|
||||
<
|
||||
|
||||
*diffview.changelog-137*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/137
|
||||
|
||||
The minimum required version has been bumped to Neovim 0.7.0, as the plugin
|
||||
now uses some of the API functions provided in this release.
|
||||
|
||||
*diffview.changelog-136*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/136
|
||||
|
||||
This PR refactors the internal representation of a panel (the various
|
||||
interactive windows used in the plugin). The way panels are configured has
|
||||
been changed and extended in a manner that is incompatible with the way it was
|
||||
done before. To update your config, just move all the window related options
|
||||
into a new table key `win_config`:
|
||||
|
||||
Before: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_panel = {
|
||||
position = "left",
|
||||
width = 35,
|
||||
height = 16,
|
||||
-- (Other options...)
|
||||
},
|
||||
})
|
||||
<
|
||||
After: ~
|
||||
>
|
||||
require("diffview").setup({
|
||||
-- ...
|
||||
file_panel = {
|
||||
win_config = {
|
||||
position = "left",
|
||||
width = 35,
|
||||
height = 16,
|
||||
},
|
||||
-- (Other options...)
|
||||
},
|
||||
})
|
||||
<
|
||||
This goes for both the `file_panel` and the `file_history_panel` config. To
|
||||
see all the available options for `win_config`, see
|
||||
|diffview-config-win_config|.
|
||||
|
||||
*diffview.changelog-93*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/93
|
||||
|
||||
The plugin will from here on out require `plenary.nvim`:
|
||||
https://github.com/nvim-lua/plenary.nvim
|
||||
|
||||
I'm using plenary for it's async utilities as well as job management. To
|
||||
update, just make sure plenary is loaded before diffview. Examples:
|
||||
|
||||
Packer:~
|
||||
`use { 'sindrets/diffview.nvim', requires = 'nvim-lua/plenary.nvim' }`
|
||||
|
||||
Plug:~
|
||||
`Plug 'nvim-lua/plenary.nvim'`
|
||||
`Plug 'sindrets/diffview.nvim'`
|
||||
|
||||
*diffview.changelog-64*
|
||||
|
||||
PR: https://github.com/sindrets/diffview.nvim/pull/64
|
||||
|
||||
This PR introduces some small breaking changes in the config, and for plugins
|
||||
integrating diffview.nvim.
|
||||
|
||||
The `use_icons` config table key has been moved out of the `file_panel` table.
|
||||
This has been done because `use_icons` now applies to other contexts than just
|
||||
the file panel. The correct way to configure this now is to set `use_icons`
|
||||
somewhere from the top level of the config table.
|
||||
|
||||
For plugins integrating diffview.nvim:
|
||||
Several of the git utilities have been refactored into their own namespace
|
||||
(`lua/diffview/git/`). I (STS) felt this was necessary due to the growing
|
||||
scope of the plugin. Most notably this means that the `Rev` class now resides
|
||||
in `lua/diffview/git/rev.lua`.
|
||||
|
||||
vim:tw=78:ts=8:ft=help:norl:
|
||||
@ -0,0 +1,230 @@
|
||||
DEFAULT CONFIG *diffview.defaults*
|
||||
|
||||
>lua
|
||||
local actions = require("diffview.actions")
|
||||
require("diffview").setup({
|
||||
diff_binaries = false, -- Show diffs for binaries
|
||||
enhanced_diff_hl = false, -- See |diffview-config-enhanced_diff_hl|
|
||||
git_cmd = { "git" }, -- The git executable followed by default args.
|
||||
hg_cmd = { "hg" }, -- The hg executable followed by default args.
|
||||
use_icons = true, -- Requires nvim-web-devicons
|
||||
show_help_hints = true, -- Show hints for how to open the help panel
|
||||
watch_index = true, -- Update views and index buffers when the git index changes.
|
||||
icons = { -- Only applies when use_icons is true.
|
||||
folder_closed = "",
|
||||
folder_open = "",
|
||||
},
|
||||
signs = {
|
||||
fold_closed = "",
|
||||
fold_open = "",
|
||||
done = "✓",
|
||||
},
|
||||
view = {
|
||||
-- Configure the layout and behavior of different types of views.
|
||||
-- Available layouts:
|
||||
-- 'diff1_plain'
|
||||
-- |'diff2_horizontal'
|
||||
-- |'diff2_vertical'
|
||||
-- |'diff3_horizontal'
|
||||
-- |'diff3_vertical'
|
||||
-- |'diff3_mixed'
|
||||
-- |'diff4_mixed'
|
||||
-- For more info, see |diffview-config-view.x.layout|.
|
||||
default = {
|
||||
-- Config for changed files, and staged files in diff views.
|
||||
layout = "diff2_horizontal",
|
||||
disable_diagnostics = false, -- Temporarily disable diagnostics for diff buffers while in the view.
|
||||
winbar_info = false, -- See |diffview-config-view.x.winbar_info|
|
||||
},
|
||||
merge_tool = {
|
||||
-- Config for conflicted files in diff views during a merge or rebase.
|
||||
layout = "diff3_horizontal",
|
||||
disable_diagnostics = true, -- Temporarily disable diagnostics for diff buffers while in the view.
|
||||
winbar_info = true, -- See |diffview-config-view.x.winbar_info|
|
||||
},
|
||||
file_history = {
|
||||
-- Config for changed files in file history views.
|
||||
layout = "diff2_horizontal",
|
||||
disable_diagnostics = false, -- Temporarily disable diagnostics for diff buffers while in the view.
|
||||
winbar_info = false, -- See |diffview-config-view.x.winbar_info|
|
||||
},
|
||||
},
|
||||
file_panel = {
|
||||
listing_style = "tree", -- One of 'list' or 'tree'
|
||||
tree_options = { -- Only applies when listing_style is 'tree'
|
||||
flatten_dirs = true, -- Flatten dirs that only contain one single dir
|
||||
folder_statuses = "only_folded", -- One of 'never', 'only_folded' or 'always'.
|
||||
},
|
||||
win_config = { -- See |diffview-config-win_config|
|
||||
position = "left",
|
||||
width = 35,
|
||||
win_opts = {},
|
||||
},
|
||||
},
|
||||
file_history_panel = {
|
||||
log_options = { -- See |diffview-config-log_options|
|
||||
git = {
|
||||
single_file = {
|
||||
diff_merges = "combined",
|
||||
},
|
||||
multi_file = {
|
||||
diff_merges = "first-parent",
|
||||
},
|
||||
},
|
||||
hg = {
|
||||
single_file = {},
|
||||
multi_file = {},
|
||||
},
|
||||
},
|
||||
win_config = { -- See |diffview-config-win_config|
|
||||
position = "bottom",
|
||||
height = 16,
|
||||
win_opts = {},
|
||||
},
|
||||
},
|
||||
commit_log_panel = {
|
||||
win_config = {}, -- See |diffview-config-win_config|
|
||||
},
|
||||
default_args = { -- Default args prepended to the arg-list for the listed commands
|
||||
DiffviewOpen = {},
|
||||
DiffviewFileHistory = {},
|
||||
},
|
||||
hooks = {}, -- See |diffview-config-hooks|
|
||||
keymaps = {
|
||||
disable_defaults = false, -- Disable the default keymaps
|
||||
view = {
|
||||
-- The `view` bindings are active in the diff buffers, only when the current
|
||||
-- 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", "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" } },
|
||||
{ "n", "<leader>e", actions.focus_files, { desc = "Bring focus to the file panel" } },
|
||||
{ "n", "<leader>b", actions.toggle_files, { desc = "Toggle the file panel." } },
|
||||
{ "n", "g<C-x>", actions.cycle_layout, { desc = "Cycle through available layouts." } },
|
||||
{ "n", "[x", actions.prev_conflict, { desc = "In the merge-tool: jump to the previous conflict" } },
|
||||
{ "n", "]x", actions.next_conflict, { desc = "In the merge-tool: jump to the next conflict" } },
|
||||
{ "n", "<leader>co", actions.conflict_choose("ours"), { desc = "Choose the OURS version of a conflict" } },
|
||||
{ "n", "<leader>ct", actions.conflict_choose("theirs"), { desc = "Choose the THEIRS version of a conflict" } },
|
||||
{ "n", "<leader>cb", actions.conflict_choose("base"), { desc = "Choose the BASE version of a conflict" } },
|
||||
{ "n", "<leader>ca", actions.conflict_choose("all"), { desc = "Choose all the versions of a conflict" } },
|
||||
{ "n", "dx", actions.conflict_choose("none"), { desc = "Delete the conflict region" } },
|
||||
{ "n", "<leader>cO", actions.conflict_choose_all("ours"), { desc = "Choose the OURS version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cT", actions.conflict_choose_all("theirs"), { desc = "Choose the THEIRS version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cB", actions.conflict_choose_all("base"), { desc = "Choose the BASE version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cA", actions.conflict_choose_all("all"), { desc = "Choose all the versions of a conflict for the whole file" } },
|
||||
{ "n", "dX", actions.conflict_choose_all("none"), { desc = "Delete the conflict region for the whole file" } },
|
||||
},
|
||||
diff1 = {
|
||||
-- Mappings in single window diff layouts
|
||||
{ "n", "g?", actions.help({ "view", "diff1" }), { desc = "Open the help panel" } },
|
||||
},
|
||||
diff2 = {
|
||||
-- Mappings in 2-way diff layouts
|
||||
{ "n", "g?", actions.help({ "view", "diff2" }), { desc = "Open the help panel" } },
|
||||
},
|
||||
diff3 = {
|
||||
-- Mappings in 3-way diff layouts
|
||||
{ { "n", "x" }, "2do", actions.diffget("ours"), { desc = "Obtain the diff hunk from the OURS version of the file" } },
|
||||
{ { "n", "x" }, "3do", actions.diffget("theirs"), { desc = "Obtain the diff hunk from the THEIRS version of the file" } },
|
||||
{ "n", "g?", actions.help({ "view", "diff3" }), { desc = "Open the help panel" } },
|
||||
},
|
||||
diff4 = {
|
||||
-- Mappings in 4-way diff layouts
|
||||
{ { "n", "x" }, "1do", actions.diffget("base"), { desc = "Obtain the diff hunk from the BASE version of the file" } },
|
||||
{ { "n", "x" }, "2do", actions.diffget("ours"), { desc = "Obtain the diff hunk from the OURS version of the file" } },
|
||||
{ { "n", "x" }, "3do", actions.diffget("theirs"), { desc = "Obtain the diff hunk from the THEIRS version of the file" } },
|
||||
{ "n", "g?", actions.help({ "view", "diff4" }), { desc = "Open the help panel" } },
|
||||
},
|
||||
file_panel = {
|
||||
{ "n", "j", actions.next_entry, { desc = "Bring the cursor to the next file entry" } },
|
||||
{ "n", "<down>", actions.next_entry, { desc = "Bring the cursor to the next file entry" } },
|
||||
{ "n", "k", actions.prev_entry, { desc = "Bring the cursor to the previous file entry" } },
|
||||
{ "n", "<up>", actions.prev_entry, { desc = "Bring the cursor to the previous file entry" } },
|
||||
{ "n", "<cr>", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "o", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "l", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "<2-LeftMouse>", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "-", actions.toggle_stage_entry, { desc = "Stage / unstage the selected entry" } },
|
||||
{ "n", "s", actions.toggle_stage_entry, { desc = "Stage / unstage the selected entry" } },
|
||||
{ "n", "S", actions.stage_all, { desc = "Stage all entries" } },
|
||||
{ "n", "U", actions.unstage_all, { desc = "Unstage all entries" } },
|
||||
{ "n", "X", actions.restore_entry, { desc = "Restore entry to the state on the left side" } },
|
||||
{ "n", "L", actions.open_commit_log, { desc = "Open the commit log panel" } },
|
||||
{ "n", "zo", actions.open_fold, { desc = "Expand fold" } },
|
||||
{ "n", "h", actions.close_fold, { desc = "Collapse fold" } },
|
||||
{ "n", "zc", actions.close_fold, { desc = "Collapse fold" } },
|
||||
{ "n", "za", actions.toggle_fold, { desc = "Toggle fold" } },
|
||||
{ "n", "zR", actions.open_all_folds, { desc = "Expand all folds" } },
|
||||
{ "n", "zM", actions.close_all_folds, { desc = "Collapse all folds" } },
|
||||
{ "n", "<c-b>", actions.scroll_view(-0.25), { desc = "Scroll the view up" } },
|
||||
{ "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", "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" } },
|
||||
{ "n", "i", actions.listing_style, { desc = "Toggle between 'list' and 'tree' views" } },
|
||||
{ "n", "f", actions.toggle_flatten_dirs, { desc = "Flatten empty subdirectories in tree listing style" } },
|
||||
{ "n", "R", actions.refresh_files, { desc = "Update stats and entries in the file list" } },
|
||||
{ "n", "<leader>e", actions.focus_files, { desc = "Bring focus to the file panel" } },
|
||||
{ "n", "<leader>b", actions.toggle_files, { desc = "Toggle the file panel" } },
|
||||
{ "n", "g<C-x>", actions.cycle_layout, { desc = "Cycle available layouts" } },
|
||||
{ "n", "[x", actions.prev_conflict, { desc = "Go to the previous conflict" } },
|
||||
{ "n", "]x", actions.next_conflict, { desc = "Go to the next conflict" } },
|
||||
{ "n", "g?", actions.help("file_panel"), { desc = "Open the help panel" } },
|
||||
{ "n", "<leader>cO", actions.conflict_choose_all("ours"), { desc = "Choose the OURS version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cT", actions.conflict_choose_all("theirs"), { desc = "Choose the THEIRS version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cB", actions.conflict_choose_all("base"), { desc = "Choose the BASE version of a conflict for the whole file" } },
|
||||
{ "n", "<leader>cA", actions.conflict_choose_all("all"), { desc = "Choose all the versions of a conflict for the whole file" } },
|
||||
{ "n", "dX", actions.conflict_choose_all("none"), { desc = "Delete the conflict region for the whole file" } },
|
||||
},
|
||||
file_history_panel = {
|
||||
{ "n", "g!", actions.options, { desc = "Open the option panel" } },
|
||||
{ "n", "<C-A-d>", actions.open_in_diffview, { desc = "Open the entry under the cursor in a diffview" } },
|
||||
{ "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" } },
|
||||
{ "n", "zR", actions.open_all_folds, { desc = "Expand all folds" } },
|
||||
{ "n", "zM", actions.close_all_folds, { desc = "Collapse all folds" } },
|
||||
{ "n", "j", actions.next_entry, { desc = "Bring the cursor to the next file entry" } },
|
||||
{ "n", "<down>", actions.next_entry, { desc = "Bring the cursor to the next file entry" } },
|
||||
{ "n", "k", actions.prev_entry, { desc = "Bring the cursor to the previous file entry" } },
|
||||
{ "n", "<up>", actions.prev_entry, { desc = "Bring the cursor to the previous file entry" } },
|
||||
{ "n", "<cr>", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "o", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "l", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "<2-LeftMouse>", actions.select_entry, { desc = "Open the diff for the selected entry" } },
|
||||
{ "n", "<c-b>", actions.scroll_view(-0.25), { desc = "Scroll the view up" } },
|
||||
{ "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", "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" } },
|
||||
{ "n", "<leader>e", actions.focus_files, { desc = "Bring focus to the file panel" } },
|
||||
{ "n", "<leader>b", actions.toggle_files, { desc = "Toggle the file panel" } },
|
||||
{ "n", "g<C-x>", actions.cycle_layout, { desc = "Cycle available layouts" } },
|
||||
{ "n", "g?", actions.help("file_history_panel"), { desc = "Open the help panel" } },
|
||||
},
|
||||
option_panel = {
|
||||
{ "n", "<tab>", actions.select_entry, { desc = "Change the current option" } },
|
||||
{ "n", "q", actions.close, { desc = "Close the panel" } },
|
||||
{ "n", "g?", actions.help("option_panel"), { desc = "Open the help panel" } },
|
||||
},
|
||||
help_panel = {
|
||||
{ "n", "q", actions.close, { desc = "Close help menu" } },
|
||||
{ "n", "<esc>", actions.close, { desc = "Close help menu" } },
|
||||
},
|
||||
},
|
||||
})
|
||||
<
|
||||
|
||||
vim:ft=help:norl:
|
||||
114
config/neovim/store/lazy-plugins/diffview.nvim/doc/tags
Normal file
114
config/neovim/store/lazy-plugins/diffview.nvim/doc/tags
Normal file
@ -0,0 +1,114 @@
|
||||
:DiffviewClose diffview.txt /*:DiffviewClose*
|
||||
:DiffviewFileHistory diffview.txt /*:DiffviewFileHistory*
|
||||
:DiffviewFocusFiles diffview.txt /*:DiffviewFocusFiles*
|
||||
:DiffviewLog diffview.txt /*:DiffviewLog*
|
||||
:DiffviewOpen diffview.txt /*:DiffviewOpen*
|
||||
:DiffviewRefresh diffview.txt /*:DiffviewRefresh*
|
||||
:DiffviewToggleFiles diffview.txt /*:DiffviewToggleFiles*
|
||||
diffview diffview.txt /*diffview*
|
||||
diffview-actions diffview.txt /*diffview-actions*
|
||||
diffview-actions-close diffview.txt /*diffview-actions-close*
|
||||
diffview-actions-close_all_folds diffview.txt /*diffview-actions-close_all_folds*
|
||||
diffview-actions-close_fold diffview.txt /*diffview-actions-close_fold*
|
||||
diffview-actions-conflict_choose diffview.txt /*diffview-actions-conflict_choose*
|
||||
diffview-actions-conflict_choose_all diffview.txt /*diffview-actions-conflict_choose_all*
|
||||
diffview-actions-copy_hash diffview.txt /*diffview-actions-copy_hash*
|
||||
diffview-actions-diffget diffview.txt /*diffview-actions-diffget*
|
||||
diffview-actions-focus_entry diffview.txt /*diffview-actions-focus_entry*
|
||||
diffview-actions-focus_files diffview.txt /*diffview-actions-focus_files*
|
||||
diffview-actions-goto_file diffview.txt /*diffview-actions-goto_file*
|
||||
diffview-actions-goto_file_edit diffview.txt /*diffview-actions-goto_file_edit*
|
||||
diffview-actions-goto_file_split diffview.txt /*diffview-actions-goto_file_split*
|
||||
diffview-actions-goto_file_tab diffview.txt /*diffview-actions-goto_file_tab*
|
||||
diffview-actions-jumpto_conflict diffview.txt /*diffview-actions-jumpto_conflict*
|
||||
diffview-actions-listing_style diffview.txt /*diffview-actions-listing_style*
|
||||
diffview-actions-next_conflict diffview.txt /*diffview-actions-next_conflict*
|
||||
diffview-actions-next_entry diffview.txt /*diffview-actions-next_entry*
|
||||
diffview-actions-open_all_folds diffview.txt /*diffview-actions-open_all_folds*
|
||||
diffview-actions-open_commit_log diffview.txt /*diffview-actions-open_commit_log*
|
||||
diffview-actions-open_fold diffview.txt /*diffview-actions-open_fold*
|
||||
diffview-actions-open_in_diffview diffview.txt /*diffview-actions-open_in_diffview*
|
||||
diffview-actions-options diffview.txt /*diffview-actions-options*
|
||||
diffview-actions-prev_conflict diffview.txt /*diffview-actions-prev_conflict*
|
||||
diffview-actions-prev_entry diffview.txt /*diffview-actions-prev_entry*
|
||||
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_next_entry diffview.txt /*diffview-actions-select_next_entry*
|
||||
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*
|
||||
diffview-actions-toggle_flatten_dirs diffview.txt /*diffview-actions-toggle_flatten_dirs*
|
||||
diffview-actions-toggle_fold diffview.txt /*diffview-actions-toggle_fold*
|
||||
diffview-actions-toggle_stage_entry diffview.txt /*diffview-actions-toggle_stage_entry*
|
||||
diffview-actions-unstage_all diffview.txt /*diffview-actions-unstage_all*
|
||||
diffview-actions-view_windo diffview.txt /*diffview-actions-view_windo*
|
||||
diffview-api diffview.txt /*diffview-api*
|
||||
diffview-available-actions diffview.txt /*diffview-available-actions*
|
||||
diffview-commands diffview.txt /*diffview-commands*
|
||||
diffview-config diffview.txt /*diffview-config*
|
||||
diffview-config-default_args diffview.txt /*diffview-config-default_args*
|
||||
diffview-config-enhanced_diff_hl diffview.txt /*diffview-config-enhanced_diff_hl*
|
||||
diffview-config-git_cmd diffview.txt /*diffview-config-git_cmd*
|
||||
diffview-config-hg_cmd diffview.txt /*diffview-config-hg_cmd*
|
||||
diffview-config-hooks diffview.txt /*diffview-config-hooks*
|
||||
diffview-config-keymaps diffview.txt /*diffview-config-keymaps*
|
||||
diffview-config-log_options diffview.txt /*diffview-config-log_options*
|
||||
diffview-config-view.x.disable_diagnostics diffview.txt /*diffview-config-view.x.disable_diagnostics*
|
||||
diffview-config-view.x.layout diffview.txt /*diffview-config-view.x.layout*
|
||||
diffview-config-view.x.winbar_info diffview.txt /*diffview-config-view.x.winbar_info*
|
||||
diffview-config-win_config diffview.txt /*diffview-config-win_config*
|
||||
diffview-conflict-example diffview.txt /*diffview-conflict-example*
|
||||
diffview-conflict-versions diffview.txt /*diffview-conflict-versions*
|
||||
diffview-file-inference diffview.txt /*diffview-file-inference*
|
||||
diffview-inspect-stash diffview.txt /*diffview-inspect-stash*
|
||||
diffview-layouts diffview.txt /*diffview-layouts*
|
||||
diffview-maps diffview.txt /*diffview-maps*
|
||||
diffview-maps-close_all_folds diffview.txt /*diffview-maps-close_all_folds*
|
||||
diffview-maps-copy_hash diffview.txt /*diffview-maps-copy_hash*
|
||||
diffview-maps-file-history-option-panel diffview.txt /*diffview-maps-file-history-option-panel*
|
||||
diffview-maps-file-history-panel diffview.txt /*diffview-maps-file-history-panel*
|
||||
diffview-maps-file-panel diffview.txt /*diffview-maps-file-panel*
|
||||
diffview-maps-focus_files diffview.txt /*diffview-maps-focus_files*
|
||||
diffview-maps-goto_file_edit diffview.txt /*diffview-maps-goto_file_edit*
|
||||
diffview-maps-goto_file_split diffview.txt /*diffview-maps-goto_file_split*
|
||||
diffview-maps-goto_file_tab diffview.txt /*diffview-maps-goto_file_tab*
|
||||
diffview-maps-next_entry diffview.txt /*diffview-maps-next_entry*
|
||||
diffview-maps-open_all_folds diffview.txt /*diffview-maps-open_all_folds*
|
||||
diffview-maps-open_in_diffview diffview.txt /*diffview-maps-open_in_diffview*
|
||||
diffview-maps-options diffview.txt /*diffview-maps-options*
|
||||
diffview-maps-prev_entry diffview.txt /*diffview-maps-prev_entry*
|
||||
diffview-maps-refresh_files diffview.txt /*diffview-maps-refresh_files*
|
||||
diffview-maps-restore_entry diffview.txt /*diffview-maps-restore_entry*
|
||||
diffview-maps-select_entry diffview.txt /*diffview-maps-select_entry*
|
||||
diffview-maps-select_next_entry diffview.txt /*diffview-maps-select_next_entry*
|
||||
diffview-maps-select_prev_entry diffview.txt /*diffview-maps-select_prev_entry*
|
||||
diffview-maps-stage_all diffview.txt /*diffview-maps-stage_all*
|
||||
diffview-maps-toggle_files diffview.txt /*diffview-maps-toggle_files*
|
||||
diffview-maps-toggle_stage_entry diffview.txt /*diffview-maps-toggle_stage_entry*
|
||||
diffview-maps-unstage_all diffview.txt /*diffview-maps-unstage_all*
|
||||
diffview-maps-view diffview.txt /*diffview-maps-view*
|
||||
diffview-merge-tool diffview.txt /*diffview-merge-tool*
|
||||
diffview-staging diffview.txt /*diffview-staging*
|
||||
diffview-unused-actions diffview.txt /*diffview-unused-actions*
|
||||
diffview-usage diffview.txt /*diffview-usage*
|
||||
diffview-user-autocmds diffview.txt /*diffview-user-autocmds*
|
||||
diffview.ConflictCount diffview.txt /*diffview.ConflictCount*
|
||||
diffview.api.views.diff.diff_view.CDiffView diffview.txt /*diffview.api.views.diff.diff_view.CDiffView*
|
||||
diffview.api.views.diff.diff_view.FileData diffview.txt /*diffview.api.views.diff.diff_view.FileData*
|
||||
diffview.changelog diffview_changelog.txt /*diffview.changelog*
|
||||
diffview.changelog-136 diffview_changelog.txt /*diffview.changelog-136*
|
||||
diffview.changelog-137 diffview_changelog.txt /*diffview.changelog-137*
|
||||
diffview.changelog-151 diffview_changelog.txt /*diffview.changelog-151*
|
||||
diffview.changelog-169 diffview_changelog.txt /*diffview.changelog-169*
|
||||
diffview.changelog-190 diffview_changelog.txt /*diffview.changelog-190*
|
||||
diffview.changelog-271 diffview_changelog.txt /*diffview.changelog-271*
|
||||
diffview.changelog-64 diffview_changelog.txt /*diffview.changelog-64*
|
||||
diffview.changelog-93 diffview_changelog.txt /*diffview.changelog-93*
|
||||
diffview.defaults diffview_defaults.txt /*diffview.defaults*
|
||||
diffview.git.FileDict diffview.txt /*diffview.git.FileDict*
|
||||
diffview.git.LogOptions diffview.txt /*diffview.git.LogOptions*
|
||||
diffview.nvim diffview.txt /*diffview.nvim*
|
||||
diffview.txt diffview.txt /*diffview.txt*
|
||||
diffview.views.file_entry.GitStats diffview.txt /*diffview.views.file_entry.GitStats*
|
||||
Reference in New Issue
Block a user