mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 09:30:04 +08:00
Update readme for unite
This commit is contained in:
parent
1b989712c6
commit
8af9987138
13
README.md
13
README.md
@ -9,7 +9,7 @@ Like spacemacs, but for vim.
|
|||||||
- [Modular configuration](#modular-configuration)
|
- [Modular configuration](#modular-configuration)
|
||||||
- Lazy-load 90% of plugins with [dein.vim]
|
- Lazy-load 90% of plugins with [dein.vim]
|
||||||
- Robust, yet light weight
|
- Robust, yet light weight
|
||||||
- Unite centric work-flow
|
- [Unite centric work-flow](#unite-centric-work-flow)
|
||||||
- Extensive Neocomplete setup
|
- Extensive Neocomplete setup
|
||||||
- Central location for tags
|
- Central location for tags
|
||||||
- Lightweight simple status/tabline
|
- Lightweight simple status/tabline
|
||||||
@ -76,6 +76,17 @@ set wildignore+=\*/node_modules/\*
|
|||||||
set guifont=Wingdings:h10
|
set guifont=Wingdings:h10
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Unite centric work-flow
|
||||||
|
- List all the plugins has been installed, fuzzy find what you want,
|
||||||
|
default action is open the github website of current plugin. default key is `<leader>lp`
|
||||||
|
![2016-12-29-22 31 27](https://cloud.githubusercontent.com/assets/13142418/21545996/c48d7728-ce16-11e6-8e30-0c72139f642f.png)
|
||||||
|
|
||||||
|
- List all the mappings and description: `f<space>`
|
||||||
|
![2016-12-29-22 35 29](https://cloud.githubusercontent.com/assets/13142418/21546066/4896c5e2-ce17-11e6-8246-945b924df9aa.png)
|
||||||
|
|
||||||
|
- List all the starred repos in github.com, fuzzy find and open the website of the repo. default key is `<leader>ls`
|
||||||
|
![2016-12-29-22 38 52](https://cloud.githubusercontent.com/assets/13142418/21546148/c6836618-ce17-11e6-82a9-81e90017dbf1.png)
|
||||||
|
|
||||||
## Plugin Highlights
|
## Plugin Highlights
|
||||||
|
|
||||||
- Package management with caching enabled and lazy loading
|
- Package management with caching enabled and lazy loading
|
||||||
|
@ -196,7 +196,7 @@ fu! s:Opencommit(repo,commit)
|
|||||||
endf
|
endf
|
||||||
|
|
||||||
fu! UpdateStarredRepos()
|
fu! UpdateStarredRepos()
|
||||||
let repos = githubapi#users#GetStarred('wsdjeg')
|
let repos = github#api#users#GetStarred('wsdjeg')
|
||||||
for repo in repos
|
for repo in repos
|
||||||
let description = repo.full_name . repeat(' ', 40 - len(repo.full_name)) . repo.description
|
let description = repo.full_name . repeat(' ', 40 - len(repo.full_name)) . repo.description
|
||||||
let cmd = "OpenBrowser " . repo.html_url
|
let cmd = "OpenBrowser " . repo.html_url
|
||||||
|
Loading…
Reference in New Issue
Block a user