From 9e915addde0a4bc5257723d74f0946b36ee50e3e Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sun, 13 May 2018 23:23:28 +0800 Subject: [PATCH] vim-unite: update layout --- vim-unite.md | 55 ++++++++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 25 deletions(-) diff --git a/vim-unite.md b/vim-unite.md index 95daa4e44..0c8d8a232 100644 --- a/vim-unite.md +++ b/vim-unite.md @@ -1,38 +1,43 @@ --- title: Vim-Unite category: Vim +layout: 2017/sheet --- ### Usage - :Unite file - :Unite file_rec/async:! - :Unite tag - :Unite buffer +``` vim +:Unite file +:Unite file_rec/async:! +:Unite tag +:Unite buffer +``` ### Sources -- `file/new` -- `file/async` -- `file_rec/async` -- `file_rec/git` -- `buffer` -- `buffer_tab` (current tab only) -- `tab` -- `register` -- `bookmark` -- `source` +* `file/new` +* `file/async` +* `file_rec/async` +* `file_rec/git` +* `buffer` +* `buffer_tab` (current tab only) +* `tab` +* `register` +* `bookmark` +* `source` ### Options -| `-start-insert` | | -| `-no-quit` | | -| `-winheight=10` | | -| `-quick-match` | select by pressing asdf keys | -| `-winwidth=40` | use with vertical | -| `-no-split` | open in current buffer | -| `-auto-preview` | great for outline | -| `-vertical` | open as sidebar | -| `-buffer-name=xxx -resume` | resume the next time it's called (faster) | -| `-input=` | reset input (use with -resume) | -| `-unique` | remove duplicates (eg, if using file_rec with file_mru) | +| Option | Description | +| -------------------------- | ----------------------------------------------------------- | +| `-start-insert` | | +| `-no-quit` | | +| `-winheight=10` | | +| `-quick-match` | select by pressing asdf keys | +| `-winwidth=40` | use with vertical | +| `-no-split` | open in current buffer | +| `-auto-preview` | great for outline | +| `-vertical` | open as sidebar | +| `-buffer-name=xxx -resume` | resume the next time it's called (faster) | +| `-input=` | reset input (use with -resume) | +| `-unique` | remove duplicates (eg, if using `file_rec` with `file_mru`) |