diff --git a/README.md b/README.md index 0de28261f..cff9cc102 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -### SpaceVim +

SpaceVim

[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) ![Version 0.1.0-dev](https://img.shields.io/badge/version-0.1.0--dev-yellow.svg?style=flat-square) @@ -128,9 +128,9 @@ let g:spacevim_plugin_groups = ['core', 'web'] let g:spacevim_disabled_plugins=['vim-foo', 'vim-bar'] " if you want to add some custom plugins, use this options. let g:spacevim_custom_plugins = [ -\ ['plasticboy/vim-markdown', 'on_ft' : 'markdown'], -\ ['wsdjeg/GitHub.vim'], -\ ] + \ ['plasticboy/vim-markdown', {'on_ft' : 'markdown'}], + \ ['wsdjeg/GitHub.vim'], + \ ] " anything defined here are simply overrides set wildignore+=\*/node_modules/\* @@ -245,7 +245,7 @@ Name | Description Name | Description -------------- | ---------------------- [vimfiler] | Powerful file explorer -[tinycomment] | Robust but light-weight commenting +[NERD Commenter] | Comment tool - no comment necessary [vinarise] | Hex editor [syntastic] | Syntax checking hacks [gita] | An awesome git handling plugin @@ -465,12 +465,15 @@ Key | Mode | Action `Ctrl`+`d` | Insert | Scroll down `Ctrl`+`u` | Insert | Scroll up -##### Plugin: TinyComment +##### Plugin: NERD Commenter Key | Mode | Action ----- |:----:| ------------------ -``+`v` | Normal/visual | Toggle single-line comments -``+`V` | Normal/visual | Toggle comment block +``+`cc` | Normal/visual | Comment out the current line or text selected in visual mode. +``+`cn` | Normal/visual | Same as cc but forces nesting. +``+`cu` | Normal/visual | Uncomments the selected line(s). +``+`cs` | Normal/visual | Comments out the selected lines with a pretty block formatted layout. +``+`cy` | Normal/visual | Same as cc except that the commented line(s) are yanked first. ##### Plugin: Goyo and Limelight diff --git a/config/plugins/vimfiler.vim b/config/plugins/vimfiler.vim index ba9e5f9cc..d2289edec 100644 --- a/config/plugins/vimfiler.vim +++ b/config/plugins/vimfiler.vim @@ -57,6 +57,7 @@ function! s:vimfilerinit() silent! nunmap gr silent! nunmap gf silent! nunmap - + silent! nunmap s nnoremap gr :Denite grep:=selected() -buffer-name=grep nnoremap gf :Denite file_rec:=selected() diff --git a/logo.png b/logo.png new file mode 100644 index 000000000..47c510aa8 Binary files /dev/null and b/logo.png differ