diff options
| author | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-20 15:55:27 -0500 |
|---|---|---|
| committer | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-20 15:55:27 -0500 |
| commit | aa5717f00fd14430c80939a68d7107c26de6e554 (patch) | |
| tree | 784e99d9b018e0554369c41cb33e2e195e28d3c6 /plugin/plugins/scratch.vim | |
first commit
Diffstat (limited to 'plugin/plugins/scratch.vim')
| -rw-r--r-- | plugin/plugins/scratch.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugin/plugins/scratch.vim b/plugin/plugins/scratch.vim new file mode 100644 index 0000000..059a21b --- /dev/null +++ b/plugin/plugins/scratch.vim @@ -0,0 +1,15 @@ +if exists('g:loaded_scratch') + finish +endif +let g:loaded_scratch = 1 + +command! -nargs=1 -complete=command Scratch call scratch#open(<q-args>, <q-mods>) +command! -nargs=? Marks <mods> Scratch marks <args> +command! -nargs=0 Messages <mods> Scratch messages +command! -nargs=? Registers <mods> Scratch registers <args> +command! -nargs=? Display <mods> Scratch display <args> +command! -nargs=? -complete=highlight Highlight <mods> Scratch highlight <args> +command! -nargs=0 Jumps <mods> Scratch jumps +command! -nargs=0 Changes <mods> Scratch changes +command! -nargs=0 Digraphs <mods> Scratch digraphs +command! -nargs=0 Scriptnames <mods> Scratch scriptnames |
