2013-04-23 14:41:02 +00:00
|
|
|
vim-startify
|
|
|
|
------------
|
|
|
|
|
2013-04-24 06:01:07 +00:00
|
|
|
Startify basically provides two things:
|
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
__1)__ If you start Vim without giving any filenames to it (or pipe stuff to it so
|
2013-04-24 06:01:07 +00:00
|
|
|
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 06:01:07 +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-05-31 10:51:58 +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. You
|
|
|
|
can even double-click anywhere on the line now.
|
2013-04-29 22:03:47 +00:00
|
|
|
|
2013-05-31 10:51:58 +00:00
|
|
|
In addtion, `e` creates an empty buffer, `i` creates an empty buffers and
|
|
|
|
jumps into insert mode, `q` quits.
|
2013-04-29 22:03:47 +00:00
|
|
|
|
2013-05-31 10:51:58 +00:00
|
|
|
Moreover, you can open several files at one go. Navigate to an entry and
|
|
|
|
hit either `b` (open in same window), `s` (open in split) or `v` (open in
|
|
|
|
vertical split). You can do that for multiple entries. You can also mix
|
|
|
|
them. The order of the selections will be remembered. Afterwards execute
|
|
|
|
these actions via `<cr>`.
|
2013-04-29 22:03:47 +00:00
|
|
|
|
2013-05-31 10:51:58 +00:00
|
|
|
When the selection is finished, Startify will close automatically. You can
|
2013-05-31 10:55:31 +00:00
|
|
|
reopen the screen via `:Startify.`
|
2013-04-24 06:06:47 +00:00
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
__2)__ It eases handling of loading and saving sessions by only working with a
|
2013-05-03 10:24:08 +00:00
|
|
|
certain directory. These commands are used for convenience:
|
2013-04-24 06:01:07 +00:00
|
|
|
|
|
|
|
:SLoad load a session
|
|
|
|
:SSave save a session
|
2013-05-02 19:16:26 +00:00
|
|
|
:SDelete delete a session
|
2013-04-24 06:01:07 +00:00
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
__NOTE__: These commands can also take session names directly as an argument. You can
|
2013-05-29 14:51:30 +00:00
|
|
|
also make use of completion via `<c-d>` and `<tab>`.
|
2013-04-24 13:07:30 +00:00
|
|
|
|
2013-04-24 06:01:07 +00:00
|
|
|
The default settings are pretty sane, so it should work without any
|
|
|
|
configuration.
|
|
|
|
|
|
|
|

|
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
__NOTE__: The colors shown in the screenshot are not the default. If you want to
|
2013-04-29 10:56:11 +00:00
|
|
|
tune the default colors, you can overwrite the highlight groups used by startify
|
|
|
|
in your vimrc. Have a look at `:h startify-colors`, after installing the plugin.
|
2013-05-31 10:55:31 +00:00
|
|
|
Moreover, `g:startify_enable_special` is set to 0.
|
2013-04-29 10:56:11 +00:00
|
|
|
|
2013-04-24 06:01:07 +00:00
|
|
|
Feedback, please!
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
If you like 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!
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
If you have no preferred installation method, I suggest using tpope's pathogen:
|
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
$ git clone https://github.com/tpope/vim-pathogen ~/.vim/bundle/vim-pathogen
|
|
|
|
$ mkdir -p ~/.vim/autoload && cd ~/.vim/autoload
|
|
|
|
$ ln -s ../bundle/vim-pathogen/autoload/pathogen.vim
|
2013-04-24 06:01:07 +00:00
|
|
|
|
2013-04-24 10:52:32 +00:00
|
|
|
Afterwards installing vim-startify is as easy as pie:
|
2013-04-24 06:01:07 +00:00
|
|
|
|
2013-05-31 10:55:31 +00:00
|
|
|
$ git clone https://github.com/mhinz/vim-startify ~/.vim/bundle/vim-startify
|
|
|
|
$ start Vim
|
|
|
|
$ :Helptags
|
|
|
|
$ :h startify
|
2013-04-24 06:01:07 +00:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
|
|
|
`:h startify`
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
|
|
|
|
Marco Hinz `<mh.codebro@gmail.com>`
|
|
|
|
|
|
|
|
License
|
|
|
|
-------
|
|
|
|
|
|
|
|
Copyright © Marco Hinz. Distributed under the same terms as Vim itself. See
|
|
|
|
`:help license`.
|