From 7c0df8fd32576fd5434b906eacaad1ea90ebdf77 Mon Sep 17 00:00:00 2001 From: Wang Shidong Date: Thu, 3 Oct 2019 22:00:09 +0800 Subject: [PATCH] Improve doc (#3115) --- autoload/SpaceVim.vim | 75 +++++++++---- autoload/SpaceVim/layers/shell.vim | 4 +- autoload/SpaceVim/layers/vim.vim | 8 ++ doc/SpaceVim.txt | 136 ++++++++++++++--------- docs/cn/sponsors.md | 166 ++++++++++++++++------------- docs/sponsors.md | 21 +++- 6 files changed, 257 insertions(+), 153 deletions(-) diff --git a/autoload/SpaceVim.vim b/autoload/SpaceVim.vim index 9b161e9eb..fdc60854e 100644 --- a/autoload/SpaceVim.vim +++ b/autoload/SpaceVim.vim @@ -556,6 +556,16 @@ let g:spacevim_enable_statusline_mode = 0 " < " let g:spacevim_custom_color_palette = [] + +"" +" @section enable_cursorcolumn, options-enable_cursorcolumn +" @parentsection options +" Enable/Disable cursorcolumn. Default is 0, cursorcolumn will be +" highlighted in normal mode. To enable this feature: +" > +" enable_cursorcolumn = true +" < + "" " Enable/Disable cursorcolumn. Default is 0, cursorcolumn will be " highlighted in normal mode. To enable this feature: @@ -639,6 +649,15 @@ let g:spacevim_info_symbol = SpaceVim#api#import('messletters').circ " set -ga terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' " < let g:spacevim_terminal_cursor_shape = 2 +"" +" @section vim_help_language, options-vim_help_language +" @parentsection options +" Set the help language of vim. Default is 'en'. +" You can change it to Chinese. +" > +" vim_help_language = "cn" +" < + "" " Set the help language of vim. Default is 'en'. " You can change it to Chinese. @@ -693,22 +712,6 @@ let g:spacevim_colorscheme_bg = 'dark' " < let g:spacevim_colorscheme_default = 'desert' "" -" @section simple_mode, options-simple_mode -" @parentsection options -" Enable/disable simple mode of SpaceVim. Default is false. -" In this mode, only few plugins will be installed. -" > -" simple_mode = true -" < - -"" -" Enable/disable simple mode of SpaceVim. Default is 0. -" In this mode, only few plugins will be installed. -" > -" let g:spacevim_simple_mode = 1 -" < -let g:spacevim_simple_mode = 0 -"" " @section filemanager, options-filemanager " @parentsection options " The default file manager of SpaceVim. Default is 'vimfiler'. @@ -768,8 +771,29 @@ let g:spacevim_plugin_manager_processes = 16 " < let g:spacevim_checkinstall = 1 "" -" Enable/Disable vimcompatible mode, by default it is disabled. In -" vimcompatible mode all vim origin key bindings will not be changed. +" @section vimcompatible, options-vimcompatible +" @parentsection options +" Enable/Disable vimcompatible mode, by default it is false. +" to enable vimcompatible mode, just add: +" > +" vimcompatible = true +" < +" In vimcompatible mode all vim origin key bindings will not be changed. +" +" Includes: +" > +" q smart quit windows +" s windows key bindings leader +" switch buffer +" < + +"" +" Enable/Disable vimcompatible mode, by default it is false. +" to enable vimcompatible mode, just add: +" > +" let g:spacevim_vimcompatible = 1 +" < +" In vimcompatible mode all vim origin key bindings will not be changed. " " Includes: " > @@ -876,6 +900,15 @@ let g:spacevim_enable_os_fileformat_icon = 0 " Set the github username, It will be used for getting your starred repos, and " fuzzy find the repo you want. let g:spacevim_github_username = '' +"" +" @section windows_smartclose, options-windows_smartclose +" @parentsection options +" Set the default key for smart close windows, default is `q`. +" to disable this feature, just set it to empty string: +" > +" windows_smartclose = "" +" < + "" " Set the default key for smart close windows, default is `q`. let g:spacevim_windows_smartclose = 'q' @@ -1102,13 +1135,13 @@ command -nargs=1 LeaderGuide call SpaceVim#mapping#guide#start_by_prefix('0', ) function! SpaceVim#end() abort - if g:spacevim_vimcompatible != 1 + if !g:spacevim_vimcompatible call SpaceVim#mapping#def('nnoremap ', '', ':wincmd w', 'Switch to next window or tab','wincmd w') call SpaceVim#mapping#def('nnoremap ', '', ':wincmd p', 'Switch to previous window or tab','wincmd p') endif - if g:spacevim_vimcompatible == 1 + if g:spacevim_vimcompatible let g:spacevim_windows_leader = '' - let g:spacevim_windows_smartclose = 0 + let g:spacevim_windows_smartclose = '' endif if !g:spacevim_vimcompatible diff --git a/autoload/SpaceVim/layers/shell.vim b/autoload/SpaceVim/layers/shell.vim index 53ced8cbb..03f6e66e3 100644 --- a/autoload/SpaceVim/layers/shell.vim +++ b/autoload/SpaceVim/layers/shell.vim @@ -235,8 +235,8 @@ function! s:open_default_shell(open_with_file_cwd) abort " use q to hide terminal buffer in vim, if vimcompatible mode is not " enabled, and smart quit is on. - if g:spacevim_windows_smartclose == 0 && !g:spacevim_vimcompatible - nnoremap q :hide + if !empty(g:spacevim_windows_smartclose) && !g:spacevim_vimcompatible + exe 'nnoremap ' . g:spacevim_windows_smartclose . ' :hide' endif startinsert else diff --git a/autoload/SpaceVim/layers/vim.vim b/autoload/SpaceVim/layers/vim.vim index 7777dc63f..85573973e 100644 --- a/autoload/SpaceVim/layers/vim.vim +++ b/autoload/SpaceVim/layers/vim.vim @@ -12,3 +12,11 @@ function! SpaceVim#layers#vim#plugins() abort \ ['mattn/vim-terminal', { 'on_cmd':['Terminal']}], \ ] endfunction + +function! SpaceVim#layers#vim#config() abort + augroup spacevim_vim_layer + autocmd! + " @todo clear vim comment string highlight + " autocmd Syntax vim syntax clear vimCommentString + augroup END +endfunction diff --git a/doc/SpaceVim.txt b/doc/SpaceVim.txt index 6f6fa42d4..0e00ea1fe 100644 --- a/doc/SpaceVim.txt +++ b/doc/SpaceVim.txt @@ -27,44 +27,47 @@ CONTENTS *SpaceVim-contents* 7. default_indent......................|SpaceVim-options-default_indent| 8. enable_ale..............................|SpaceVim-options-enable_ale| 9. enable_bepo_layout..............|SpaceVim-options-enable_bepo_layout| - 10. enable_cursorline...............|SpaceVim-options-enable_cursorline| - 11. enable_debug.........................|SpaceVim-options-enable_debug| - 12. enable_googlesuggest.........|SpaceVim-options-enable_googlesuggest| - 13. enable_guicolors.................|SpaceVim-options-enable_guicolors| - 14. enable_insert_leader.........|SpaceVim-options-enable_insert_leader| - 15. enable_key_frequency.........|SpaceVim-options-enable_key_frequency| - 16. enable_neomake.....................|SpaceVim-options-enable_neomake| - 17. enable_statusline_bfpath.|SpaceVim-options-enable_statusline_bfpath| - 18. enable_statusline_mode.....|SpaceVim-options-enable_statusline_mode| - 19. enable_statusline_tag.......|SpaceVim-options-enable_statusline_tag| - 20. enable_tabline_ft_icon.....|SpaceVim-options-enable_tabline_ft_icon| - 21. enable_vimfiler_welcome...|SpaceVim-options-enable_vimfiler_welcome| - 22. enable_ycm.............................|SpaceVim-options-enable_ycm| - 23. error_symbol.........................|SpaceVim-options-error_symbol| - 24. filemanager...........................|SpaceVim-options-filemanager| - 25. filetree_direction.............|SpaceVim-options-filetree_direction| - 26. guifont...................................|SpaceVim-options-guifont| - 27. home_files_number...............|SpaceVim-options-home_files_number| - 28. info_symbol...........................|SpaceVim-options-info_symbol| - 29. keep_server_alive...............|SpaceVim-options-keep_server_alive| - 30. language.................................|SpaceVim-options-language| - 31. lint_on_the_fly...................|SpaceVim-options-lint_on_the_fly| - 32. max_column.............................|SpaceVim-options-max_column| - 33. plugin_bundle_dir...............|SpaceVim-options-plugin_bundle_dir| - 34. plugin_manager_processes.|SpaceVim-options-plugin_manager_processes| - 35. realtime_leader_guide.......|SpaceVim-options-realtime_leader_guide| - 36. relativenumber.....................|SpaceVim-options-relativenumber| - 37. retry_cnt...............................|SpaceVim-options-retry_cnt| - 38. sidebar_width.......................|SpaceVim-options-sidebar_width| - 39. simple_mode...........................|SpaceVim-options-simple_mode| + 10. enable_cursorcolumn...........|SpaceVim-options-enable_cursorcolumn| + 11. enable_cursorline...............|SpaceVim-options-enable_cursorline| + 12. enable_debug.........................|SpaceVim-options-enable_debug| + 13. enable_googlesuggest.........|SpaceVim-options-enable_googlesuggest| + 14. enable_guicolors.................|SpaceVim-options-enable_guicolors| + 15. enable_insert_leader.........|SpaceVim-options-enable_insert_leader| + 16. enable_key_frequency.........|SpaceVim-options-enable_key_frequency| + 17. enable_neomake.....................|SpaceVim-options-enable_neomake| + 18. enable_statusline_bfpath.|SpaceVim-options-enable_statusline_bfpath| + 19. enable_statusline_mode.....|SpaceVim-options-enable_statusline_mode| + 20. enable_statusline_tag.......|SpaceVim-options-enable_statusline_tag| + 21. enable_tabline_ft_icon.....|SpaceVim-options-enable_tabline_ft_icon| + 22. enable_vimfiler_welcome...|SpaceVim-options-enable_vimfiler_welcome| + 23. enable_ycm.............................|SpaceVim-options-enable_ycm| + 24. error_symbol.........................|SpaceVim-options-error_symbol| + 25. filemanager...........................|SpaceVim-options-filemanager| + 26. filetree_direction.............|SpaceVim-options-filetree_direction| + 27. guifont...................................|SpaceVim-options-guifont| + 28. home_files_number...............|SpaceVim-options-home_files_number| + 29. info_symbol...........................|SpaceVim-options-info_symbol| + 30. keep_server_alive...............|SpaceVim-options-keep_server_alive| + 31. language.................................|SpaceVim-options-language| + 32. lint_on_the_fly...................|SpaceVim-options-lint_on_the_fly| + 33. max_column.............................|SpaceVim-options-max_column| + 34. plugin_bundle_dir...............|SpaceVim-options-plugin_bundle_dir| + 35. plugin_manager_processes.|SpaceVim-options-plugin_manager_processes| + 36. realtime_leader_guide.......|SpaceVim-options-realtime_leader_guide| + 37. relativenumber.....................|SpaceVim-options-relativenumber| + 38. retry_cnt...............................|SpaceVim-options-retry_cnt| + 39. sidebar_width.......................|SpaceVim-options-sidebar_width| 40. snippet_engine.....................|SpaceVim-options-snippet_engine| 41. statusline_iseparator.......|SpaceVim-options-statusline_iseparator| 42. statusline_left_sections.|SpaceVim-options-statusline_left_sections| 43. statusline_separator.........|SpaceVim-options-statusline_separator| 44. terminal_cursor_shape.......|SpaceVim-options-terminal_cursor_shape| - 45. warning_symbol.....................|SpaceVim-options-warning_symbol| - 46. windows_index_type.............|SpaceVim-options-windows_index_type| - 47. windows_leader.....................|SpaceVim-options-windows_leader| + 45. vim_help_language...............|SpaceVim-options-vim_help_language| + 46. vimcompatible.......................|SpaceVim-options-vimcompatible| + 47. warning_symbol.....................|SpaceVim-options-warning_symbol| + 48. windows_index_type.............|SpaceVim-options-windows_index_type| + 49. windows_leader.....................|SpaceVim-options-windows_leader| + 50. windows_smartclose.............|SpaceVim-options-windows_smartclose| 3. Configuration...........................................|SpaceVim-config| 4. Commands..............................................|SpaceVim-commands| 5. Functions............................................|SpaceVim-functions| @@ -242,6 +245,15 @@ Enable/Disable bepo layout, by default it is disabled. enable_bepo_layout = true < +============================================================================== +ENABLE_CURSORCOLUMN *SpaceVim-options-enable_cursorcolumn* + +Enable/Disable cursorcolumn. Default is 0, cursorcolumn will be highlighted in +normal mode. To enable this feature: +> + enable_cursorcolumn = true +< + ============================================================================== ENABLE_CURSORLINE *SpaceVim-options-enable_cursorline* @@ -469,15 +481,6 @@ SIDEBAR_WIDTH *SpaceVim-options-sidebar_width* Set the width of the SpaceVim sidebar. Default is 30. This value will be used by tagbar and vimfiler. -============================================================================== -SIMPLE_MODE *SpaceVim-options-simple_mode* - -Enable/disable simple mode of SpaceVim. Default is false. In this mode, only -few plugins will be installed. -> - simple_mode = true -< - ============================================================================== SNIPPET_ENGINE *SpaceVim-options-snippet_engine* @@ -553,6 +556,31 @@ the following to ~/.tmux.conf: set -ga terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' < +============================================================================== +VIM_HELP_LANGUAGE *SpaceVim-options-vim_help_language* + +Set the help language of vim. Default is 'en'. You can change it to Chinese. +> + vim_help_language = "cn" +< + +============================================================================== +VIMCOMPATIBLE *SpaceVim-options-vimcompatible* + +Enable/Disable vimcompatible mode, by default it is false. to enable +vimcompatible mode, just add: +> + vimcompatible = true +< +In vimcompatible mode all vim origin key bindings will not be changed. + +Includes: +> + q smart quit windows + s windows key bindings leader + switch buffer +< + ============================================================================== WARNING_SYMBOL *SpaceVim-options-warning_symbol* @@ -583,6 +611,15 @@ this feature, or you can set to another char. windows_leader = "" < +============================================================================== +WINDOWS_SMARTCLOSE *SpaceVim-options-windows_smartclose* + +Set the default key for smart close windows, default is `q`. to disable this +feature, just set it to empty string: +> + windows_smartclose = "" +< + ============================================================================== CONFIGURATION *SpaceVim-config* @@ -887,13 +924,6 @@ installed. let g:spacevim_colorscheme_default = 'other_color' < - *g:spacevim_simple_mode* -Enable/disable simple mode of SpaceVim. Default is 0. In this mode, only few -plugins will be installed. -> - let g:spacevim_simple_mode = 1 -< - *g:spacevim_filemanager* The default file manager of SpaceVim. Default is 'vimfiler'. you can also use nerdtree or defx @@ -914,8 +944,12 @@ Enable/Disable checkinstall on SpaceVim startup. Default is 1. < *g:spacevim_vimcompatible* -Enable/Disable vimcompatible mode, by default it is disabled. In vimcompatible -mode all vim origin key bindings will not be changed. +Enable/Disable vimcompatible mode, by default it is false. to enable +vimcompatible mode, just add: +> + let g:spacevim_vimcompatible = 1 +< +In vimcompatible mode all vim origin key bindings will not be changed. Includes: > diff --git a/docs/cn/sponsors.md b/docs/cn/sponsors.md index 598664949..3a46f6d00 100644 --- a/docs/cn/sponsors.md +++ b/docs/cn/sponsors.md @@ -15,9 +15,9 @@ lang: cn Buy Me a Coffee at ko-fi.com -| 微信                                                                  | 支付宝                                                                     | -| ------------------------------------------------------------------------ | -------------------------------------------------------------------------- | -| | | +| 微信                                                                   | 支付宝                                                                     | +| ---------------------------------------------------------------------- | -------------------------------------------------------------------------- | +| | | 比特币:1DtuVeg81c2L9NEhDaVTAAbrCR3pN5xPFv @@ -27,77 +27,95 @@ lang: cn 同时,你也可以查看 [Bountysource campaign](https://www.bountysource.com/teams/spacevim) 获取更多信息。 -| 日期     | 金额 | 描述               | -| ------------ | ------- | ----------------- | -| 2016-09-26 | ¥ 100 | *好 | -| 2016-09-26 | ¥ 300 | *好 | -| 2016-11-22 | ¥ 20 | *续 | -| 2017-02-23 | ¥ 40 | *拔 | -| 2017-02-14 | ¥ 100 | *洁 | -| 2017-03-18 | ¥ 20 | z*t | -| 2017-03-30 | ¥ 20 | l*n | -| 2017-04-07 | ¥ 20 | *酱 | -| 2017-06-20 | $ 2.57 | Шепелев Григорий | -| 2017-06-24 | $ 14.04 | Vowell Jason | -| 2017-06-24 | $ 2.57 | Senaud Nicolas | -| 2017-09-16 | $ 2.57 | D'Avezac Mayeul | -| 2017-09-24 | ¥ 0.99 | 1*5 | -| 2017-11-02 | ¥ 10 | *下 | -| 2017-11-02 | ¥ 10 | *下 | -| 2017-11-20 | ¥ 1.6 | *瑞 | -| 2017-11-26 | $ 14.04 | Hermans Tim | -| 2017-12-13 | $ 5.44 | Ma Fei | -| 2017-12-27 | $ 8.30 | Módolo Marcelo | -| 2017-12-28 | ¥ 20 | s*n | -| 2017-12-28   | ¥ 10.24 | bts | -| 2017-12-29 | ¥ 10 | *哥 | -| 2018-01-22 | ¥ 10 | *强 | -| 2018-01-24 | ¥ 20 | unlockingc | -| 2018-02-05 | $ 2.57 | Samuel Mitchell | -| 2018-02-13 | $ 45 | talktopete | -| 2018-02-14 | ¥ 20 | *川 | -| 2018-02-14 | ¥ 188 | *黑8 | -| 2018-02-18 | ¥ 66.6 | *谨 | -| 2018-02-22 | $ 9 | sei40kr | -| 2018-02-24 | $ 6 | kapkabnh | -| 2018-03-14 | ¥ 1 | *目 | -| 2018-03-20 | $ 10 | kovaski | -| 2018-03-26 | ¥ 0.01 | *丰 | -| 2018-03-28 | $ 2.57 | 小林 | -| 2018-03-30 | ¥ 10 | 林* | -| 2018-03-31 | ¥ 18.88 | s*n | -| 2018-04-04 | ¥ 10 | 童* | -| 2018-04-06 | ¥ 9.99 | Galaxy | -| 2018-04-20 | ¥ 5 | 可*) | -| 2018-04-29 | ¥ 5 | *中 | -| 2018-05-07 | ¥ 6.6 | *浪 | -| 2018-05-09 | ¥ 10 | S*R | -| 2018-05-16 | $ 2.57 | Daniel Beste | -| 2018-06-18 | $ 11.17 | Charalambos | -| 2018-06-20 | $ 2.57 | Jingpeng Wu | -| 2018-06-24 | ¥ 50 | 青* | -| 2018-06-25 | $ 14.04 | Core Enable, LLC | -| 2018-07-16 | ¥ 5 | L_Collection | -| 2018-07-26 | $ 5.44 | John Femiani | -| 2018-07-31 | ¥ 10 | w*d | -| 2018-08-04 | ¥ 50 | *建 | -| 2018-08-12 | ¥ 20 | leo陶 | -| 2018-08-15 | ¥ 300 | 睿 | -| 2018-09-12 | ¥ 50 | 鉴*o | -| 2018-09-21 | $ 200 | chvanikoff | -| 2018-10-23 | $ 2.57 | Hongjun Fu | -| 2018-10-26 | $ 2.57 | Vladimir Kravtsov | -| 2018-10-23 | $ 2.57 | Hongjun Fu | -| 2018-11-13 | ¥ 8.8 | 开源 | -| 2018-11-14 | $ 14.04 | Mateusz | -| 2018-12-04 | ¥ 30 | 兵焦 | -| 2018-12-17 | ¥ 1 | *歌 | -| 2018-12-17 | ¥ 100 | 涛 | -| 2018-12-20 | ¥ 20.19 | *尘 | +| 日期     | 金额 | 描述               | +| ------------ | -------- | ------------------ | +| 2016-09-26 | ¥ 100 | \*好 | +| 2016-09-26 | ¥ 300 | \*好 | +| 2016-11-22 | ¥ 20 | \*续 | +| 2017-02-23 | ¥ 40 | \*拔 | +| 2017-02-14 | ¥ 100 | \*洁 | +| 2017-03-18 | ¥ 20 | z\*t | +| 2017-03-30 | ¥ 20 | l\*n | +| 2017-04-07 | ¥ 20 | \*酱 | +| 2017-06-20 | \$ 2.57 | Шепелев Григорий | +| 2017-06-24 | \$ 14.04 | Vowell Jason | +| 2017-06-24 | \$ 2.57 | Senaud Nicolas | +| 2017-09-16 | \$ 2.57 | D'Avezac Mayeul | +| 2017-09-24 | ¥ 0.99 | 1\*5 | +| 2017-11-02 | ¥ 10 | \*下 | +| 2017-11-02 | ¥ 10 | \*下 | +| 2017-11-20 | ¥ 1.6 | \*瑞 | +| 2017-11-26 | \$ 14.04 | Hermans Tim | +| 2017-12-13 | \$ 5.44 | Ma Fei | +| 2017-12-27 | \$ 8.30 | Módolo Marcelo | +| 2017-12-28 | ¥ 20 | s\*n | +| 2017-12-28   | ¥ 10.24 | bts | +| 2017-12-29 | ¥ 10 | \*哥 | +| 2018-01-22 | ¥ 10 | \*强 | +| 2018-01-24 | ¥ 20 | unlockingc | +| 2018-02-05 | \$ 2.57 | Samuel Mitchell | +| 2018-02-13 | \$ 45 | talktopete | +| 2018-02-14 | ¥ 20 | \*川 | +| 2018-02-14 | ¥ 188 | \*黑 8 | +| 2018-02-18 | ¥ 66.6 | \*谨 | +| 2018-02-22 | \$ 9 | sei40kr | +| 2018-02-24 | \$ 6 | kapkabnh | +| 2018-03-14 | ¥ 1 | \*目 | +| 2018-03-20 | \$ 10 | kovaski | +| 2018-03-26 | ¥ 0.01 | \*丰 | +| 2018-03-28 | \$ 2.57 | 小林 | +| 2018-03-30 | ¥ 10 | 林\* | +| 2018-03-31 | ¥ 18.88 | s\*n | +| 2018-04-04 | ¥ 10 | 童\* | +| 2018-04-06 | ¥ 9.99 | Galaxy | +| 2018-04-20 | ¥ 5 | 可\*) | +| 2018-04-29 | ¥ 5 | \*中 | +| 2018-05-07 | ¥ 6.6 | \*浪 | +| 2018-05-09 | ¥ 10 | S\*R | +| 2018-05-16 | \$ 2.57 | Daniel Beste | +| 2018-06-18 | \$ 11.17 | Charalambos | +| 2018-06-20 | \$ 2.57 | Jingpeng Wu | +| 2018-06-24 | ¥ 50 | 青\* | +| 2018-06-25 | \$ 14.04 | Core Enable, LLC | +| 2018-07-16 | ¥ 5 | L_Collection | +| 2018-07-26 | \$ 5.44 | John Femiani | +| 2018-07-31 | ¥ 10 | w\*d | +| 2018-08-04 | ¥ 50 | \*建 | +| 2018-08-12 | ¥ 20 | leo 陶 | +| 2018-08-15 | ¥ 300 | 睿 | +| 2018-09-12 | ¥ 50 | 鉴\*o | +| 2018-09-21 | \$ 200 | chvanikoff | +| 2018-10-23 | \$ 2.57 | Hongjun Fu | +| 2018-10-26 | \$ 2.57 | Vladimir Kravtsov | +| 2018-10-23 | \$ 2.57 | Hongjun Fu | +| 2018-11-13 | ¥ 8.8 | 开源 | +| 2018-11-14 | \$ 14.04 | Mateusz | +| 2018-12-26 | \$ 2.57 | CelikOkan | +| 2019-01-03 | \$ 5.44 | DywanChristian | +| 2019-01-07 | \$ 2.57 | Administrateur | +| 2019-04-08 | \$ 8.3 | Mateusz Grzeliński | +| 2018-12-04 | ¥ 30 | 兵焦 | +| 2018-12-17 | ¥ 1 | \*歌 | +| 2018-12-17 | ¥ 100 | 涛 | +| 2019-01-18 | ¥ 6.66 | f\*n | +| 2018-12-20 | ¥ 20.19 | \*尘 | +| 2019-04-09 | ¥ 10 | 东海 | +| 2019-03-17 | ¥ 1000 | falls | +| 2019-01-24 | ¥ 10 | 重剑 | +| 2019-04-24 | \$171.78 | LLIP | +| 2019-04-24 | \$2.57 | Isaac | +| 2019-05-02 | \$2.57 | Peter Kuchar | +| 2019-05-03 | \$2.57 | Ozon-Web82 | +| 2019-06-18 | \$8.30 | Stefan Lendl | +| 2019-06-24 | \$5.44 | Colin Barnabas | +| 2019-07-06 | \$2.57 | Alejandro Vega | +| 2019-07-27 | \$2.57 | Sahani Pranav | +| 2019-10-01 | \$2.57 | Angers Martin | +| 2019-10-03 | \$5.44 | Thorne Ross | ## 历史支出 -| 日期     | 金额 | 描述 | -| ---------- | ------- | ----- | -| 2017-06-10 | - $ 5 | 主机 | -| 2017-01-03 | - ¥ 225 | 域名 | +| 日期     | 金额 | 描述 | +| ---------- | ------- | ---- | +| 2017-06-10 | - \$ 5 | 主机 | +| 2017-01-03 | - ¥ 225 | 域名 | diff --git a/docs/sponsors.md b/docs/sponsors.md index 961a397b5..98ac9ffaf 100644 --- a/docs/sponsors.md +++ b/docs/sponsors.md @@ -100,11 +100,22 @@ See the [Bountysource campaign](https://www.bountysource.com/teams/spacevim) for | 2019-04-09 | ¥ 10 | 东海 | | 2019-03-17 | ¥ 1000 | falls | | 2019-01-24 | ¥ 10 | 重剑 | +| 2019-04-24 | \$171.78 | LLIP | +| 2019-04-24 | \$2.57 | Isaac | +| 2019-05-02 | \$2.57 | Peter Kuchar | +| 2019-05-03 | \$2.57 | Ozon-Web82 | +| 2019-06-18 | \$8.30 | Stefan Lendl | +| 2019-06-24 | \$5.44 | Colin Barnabas | +| 2019-07-06 | \$2.57 | Alejandro Vega | +| 2019-07-27 | \$2.57 | Sahani Pranav | +| 2019-10-01 | \$2.57 | Angers Martin | +| 2019-10-03 | \$5.44 | Thorne Ross | ## Historical Spending -| Date     | Amount | Description | -| ---------- | ------- | ----------- | -| 2019-04-11 | - ¥ 525 | Domain | -| 2017-06-10 | - \$ 5 | Host | -| 2017-01-03 | - ¥ 225 | Domain | +| Date     | Amount | Description | +| ---------- | --------- | ----------- | +| 2019-09-29 | - ¥ 18.74 | Host | +| 2019-04-11 | - ¥ 525 | Domain | +| 2017-06-10 | - \$ 5 | Host | +| 2017-01-03 | - ¥ 225 | Domain |