vim-sussify/doc/startify.txt

240 lines
7.3 KiB
Plaintext
Raw Normal View History

2013-04-24 05:53:33 +00:00
*startify.txt* Showing recently used files like a boss.
*startify*
__ __ ___
/\ \__ /\ \__ __ /'___\
____\ \ ,_\ __ _ __\ \ ,_\/\_\/\ \__/ __ __
/',__\\ \ \/ /'__`\ /\`'__\ \ \/\/\ \ \ ,__\/\ \/\ \
/\__, `\\ \ \_/\ \L\.\_\ \ \/ \ \ \_\ \ \ \ \_/\ \ \_\ \
\/\____/ \ \__\ \__/.\_\\ \_\ \ \__\\ \_\ \_\ \/`____ \
\/___/ \/__/\/__/\/_/ \/_/ \/__/ \/_/\/_/ `/___/> \
/\___/
\/__/
==============================================================================
CONTENTS *startify-contents*
1.Intro..........................................|startify-intro|
2.Usage..........................................|startify-usage|
3.Options........................................|startify-options|
4.Commands.......................................|startify-commands|
5.Colors.........................................|startify-colors|
6.FAQ............................................|startify-faq|
7.Author.........................................|startify-author|
8.License........................................|startify-license|
2013-04-24 05:53:33 +00:00
==============================================================================
1. Intro *startify-intro*
2013-04-25 07:45:17 +00:00
Startify is a zero-conf plugin which shows recently used files, bookmarks and
sessions that were saved to a certain directory.
2013-04-24 05:53:33 +00:00
==============================================================================
2. Usage *startify-usage*
Startify basically provides two things:
1) If you start Vim without giving any filenames to it (or pipe stuff to it so
it reads from STDIN), startify will show a small but pretty start screen
2013-04-24 10:15:16 +00:00
which shows recently used files (using viminfo) and sessions by default.
2013-04-24 05:53:33 +00:00
2013-04-24 08:42:35 +00:00
Additionally, you can define bookmarks, thus entries for files that always
should be available in the start screen.
2013-04-25 07:33:07 +00:00
You can either navigate to a certain menu entry and hit enter or you just
key in whatever is written between the square brackets on that line.
Per default the startify buffer gets closed automatically, if an entry was
selected.
You can reopen the screen via :Startify.
2013-04-24 06:06:47 +00:00
2013-04-24 05:53:33 +00:00
2) It eases handling of loading and saving sessions by only working with a
certain directory. Two commands are used for convenience:
:SLoad load a session
:SSave save a session
2013-04-24 06:01:07 +00:00
The default settings are pretty sane, so it should work without any
configuration.
2013-04-24 05:53:33 +00:00
==============================================================================
3. Options *startify-options*
Put these variables into your vimrc. The shown assignments are also the
default values.
============-
let g:startify_empty_buffer_key = ''
This creates an additional, hidden mapping for the empty buffer.
Example: let g:startify_empty_buffer_key = 'o'
2013-04-24 05:53:33 +00:00
============-
let g:startify_session_dir = '~/.vim/session'
The directory to save/load sessions to/from.
The default for Windows systems is '$HOME\vimfiles\session'.
2013-04-24 05:53:33 +00:00
============-
let g:startify_show_sessions = 1
List saved sessions in g:startify_session_dir.
============-
let g:startify_show_files = 1
List recently used files using viminfo.
============-
let g:startify_show_files_number = 10
The amount of files to list.
2013-04-24 08:42:35 +00:00
============-
let g:startify_bookmarks = []
2013-04-24 08:42:35 +00:00
A list of files to bookmark. Those files will always be shown at the bottom of
the start screen.
Example: let g:startify_bookmarks = [ '~/.vimrc' ]
============-
let g:startify_skiplist = []
A list of Vim regular expressions to filter recently used files.
Example: let g:startify_skiplist = [
\ 'COMMIT_EDITMSG',
\ $VIMRUNTIME .'/doc',
\ 'bundle/.*/doc'
\ ]
2013-04-24 08:42:35 +00:00
============-
let g:startify_skiplist_server = []
Do not create the startify buffer, if this is a Vim server instance with a
name contained in this list.
Example: let g:startify_skiplist_server = [ 'GVIM' ]
2013-04-24 22:46:22 +00:00
============-
let g:startify_unlisted_buffer = 1
Some bad plugins like minibufexpl break, when there is no listed buffer.
People can set this variable to 0, to work around that. As a consequence the
start screen buffer won't be removed, even after triggering an action from the
start screen.
2013-04-24 05:53:33 +00:00
==============================================================================
4. Commands *startify-commands*
:SLoad load a session
:SSave save a session
2013-04-24 11:46:11 +00:00
These take either 0 or 1 argument. If you don't specify the session name as an
argument, they will just ask for it.
2013-04-24 13:01:43 +00:00
Providing only a part of the session name works too, if you complete the
2013-04-25 07:01:20 +00:00
argument with either <c-d> or <tab> afterwards.
2013-04-24 12:28:35 +00:00
2013-04-24 05:53:33 +00:00
2013-04-25 07:33:07 +00:00
:Startify
Open the startify buffer.
2013-04-24 05:53:33 +00:00
==============================================================================
5. Colors *startify-colors*
You can overwrite the highlight groups used by startify. The plugins defines
these groups:
startifyBracket [,]
startifyNumber the numbers between []
startifyPath the path to a file
startifySlash slashes in paths
startifySpecial <empty buffer>,<quit>
Example: (my terminal emulator supports 256 colors)
hi StartifyBracket ctermfg=240
hi StartifyNumber ctermfg=215
hi StartifyPath ctermfg=245
hi StartifySlash ctermfg=240
==============================================================================
6. FAQ (Or: Typical rants) *startify-faq*
2013-04-25 07:10:23 +00:00
"I don't want the start screen to use cursorline!"
--------------------------------------------------
2013-04-25 07:45:17 +00:00
Startify sets its own filetype "startify". Thus one could set buffer-local
2013-04-25 07:10:23 +00:00
options like this:
autocmd FileType startify setlocal nocursorline
2013-04-25 07:45:17 +00:00
"Last recently used files don't seem to get updated at :Startify!"
-----------------------------------------------------------
It's because Vim loads the list from viminfo only once, at startup.
2013-04-26 09:51:26 +00:00
"I use iTerm2 and have broken colors when using sessions!"
----------------------------------------------------------
2013-04-26 09:45:51 +00:00
Nothing this plugin could do about. Try playing around with 'sessionoptions'.
Some people swear it works for them with these settings:
set sessionoptions=blank,curdir,folds,help,tabpages,winpos
2013-04-25 07:10:23 +00:00
==============================================================================
7. About the author *startify-author*
2013-04-24 05:53:33 +00:00
My nick on Freenode IRC is mhi^.
For latest developments: https://github.com/mhinz
If you use any of my plugins, star it on github. This is a great way of
getting feedback! Same for issues or feature requests.
Thank you for flying mhi airlines. Get the Vim on!
==============================================================================
8. License *startify-license*
2013-04-24 05:53:33 +00:00
Copyright © Marco Hinz. Distributed under the same terms as Vim itself.
See |license|.
vim: tw=78