summaryrefslogtreecommitdiffstats
path: root/doc/ft-gitcommit-plugin.txt
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-10-19 02:55:37 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-10-19 02:55:37 +0200
commit5e2607d93f98e0394d1d68b1d6592b2d0a11f52f (patch)
tree6002f0061b13d1876685aea1469e850cf4aa4ba1 /doc/ft-gitcommit-plugin.txt
parent3d80a66e7be229a014989b798fc4fad8e579946d (diff)
downloadvim-polyglot-5e2607d93f98e0394d1d68b1d6592b2d0a11f52f.tar.gz
vim-polyglot-5e2607d93f98e0394d1d68b1d6592b2d0a11f52f.zip
Remove docs so docs of installed plugins are up to date
Diffstat (limited to 'doc/ft-gitcommit-plugin.txt')
-rw-r--r--doc/ft-gitcommit-plugin.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/ft-gitcommit-plugin.txt b/doc/ft-gitcommit-plugin.txt
deleted file mode 100644
index 3d6b9055..00000000
--- a/doc/ft-gitcommit-plugin.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
-
-GIT COMMIT *ft-gitcommit-plugin*
-
-One command, :DiffGitCached, is provided to show a diff of the current commit
-in the preview window. It is equivalent to calling "git diff --cached" plus
-any arguments given to the command.
-
-GIT REBASE *ft-gitrebase-plugin*
-
-In a gitrebase filetype buffer, the following commands are provided:
-
- `:Pick` Changes the cursor line to a `pick` line.
- `:Squash` Changes the cursor line to a `squash` line
- `:Edit` Changes the cursor line to an `edit` line
- `:Reword` Changes the cursor line to a `reword` line
- `:Fixup` Changes the cursor line to a `fixup` line
- `:Drop` Changes the cursor line to a `drop` line
- `:Cycle` Cycles between the first 5 gitrebase commands
-
-To make the `:Cycle` command more useful, it might be mapped, e.g. >
- nnoremap <buffer> <silent> S :Cycle<CR>
-<
-
-endif