1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 23:10:04 +08:00
Commit Graph

1902 Commits

Author SHA1 Message Date
Andrés
95c7ef70e7
docs(ruby): add solargraph to Code completion section 2023-06-17 09:08:20 +08:00
wsdjeg
9be79c8e5a docs(wiki): disable github wiki 2023-06-15 11:18:10 +08:00
wsdjeg
1061082e00 docs(todo): add doc about grep bug 2023-06-01 00:25:41 +08:00
wsdjeg
d14af8a1d9 perf(neotree): add ctrl-h key binding 2023-05-31 20:10:25 +08:00
ChasingZenith
ce69cb81a4
feat(telescope): add :Telescope ultisnips command
add `<Leader> f s` key binding for telescope ultisnips.
this key binding is definded only when telescope layer
is loaded and snippet engine is ultisnips
2023-04-22 22:10:04 +08:00
Shidong Wang
f97e3e9f94
fix(core): fix major mode cache support 2023-04-18 19:40:42 +08:00
Pedro Mendes
5d643afbd7
fix(install): fix neovim path
merge https://github.com/SpaceVim/SpaceVim/pull/4839
close https://github.com/SpaceVim/SpaceVim/issues/4838
2023-04-16 21:25:37 +08:00
wsdjeg
43beabab1a docs(clang): fix doc for clang std 2023-04-06 23:05:02 +08:00
wsdjeg
2854ad1ae2 docs(community): add info about mail list 2023-04-04 08:01:20 +08:00
wsdjeg
91cc06bf4c fix(clojure): fix repl key binding 2023-04-01 21:33:54 +08:00
wsdjeg
cf74aaf4a0 docs(clojure): update clojure guide 2023-04-01 19:52:53 +08:00
wsdjeg
e9062da7bd chore(website): remove addthis script 2023-03-30 20:47:23 +08:00
wsdjeg
390345e329 chore(version): update to v2.2.0-dev 2023-03-30 20:43:41 +08:00
wsdjeg
0d3d740c8f
Release v2.1.0 2023-03-30 20:03:37 +08:00
wsdjeg
423e83e479 fix(javalsp): fix jdtls_home 2023-03-29 12:24:36 +08:00
wsdjeg
f0d04259aa docs(java): update doc for jdtls 2023-03-29 09:55:13 +08:00
wsdjeg
ab8b3e7901 docs(grammar): fix grammar in documentation 2023-03-29 09:09:07 +08:00
wsdjeg
d6dd0a1111 docs(layers): update layer list 2023-03-28 12:22:25 +08:00
wsdjeg
6ebee744ca
feat(xmake): add xmake support 2023-03-28 12:14:51 +08:00
wsdjeg
9b33d5b909 chore(copyright): update copyright 2023-03-26 13:44:47 +08:00
wsdjeg
ad491c4025 feat(json5): add json5 support
close https://github.com/SpaceVim/SpaceVim/issues/4776
2023-03-26 13:11:24 +08:00
wsdjeg
468681284d feat(checkers): add open_error_list option
close https://github.com/SpaceVim/SpaceVim/issues/4796
2023-03-25 19:56:07 +08:00
wsdjeg
7e370e7c65 docs(core): update core layer doc 2023-03-24 11:19:58 +08:00
wsdjeg
f5dd857c81 docs(guide): update guide link 2023-03-24 09:39:08 +08:00
wsdjeg
73a7242daa docs(bash): update lang#sh layer doc
close https://github.com/SpaceVim/SpaceVim/issues/4781
2023-03-23 23:35:31 +08:00
Mengsheng Wu
c4433b1231
fix(typo): update python guide 2023-03-14 08:23:14 +08:00
wsdjeg
4c07aa025f fix(install): remove commands checking 2023-02-21 18:59:49 +08:00
LookForAdmin
1c0b17d6be
fix(install): fix install.sh
fix #4790
2023-02-21 14:02:15 +08:00
wsdjeg
2cd7863325 docs(community): remove links to gitter 2023-02-21 13:54:05 +08:00
wsdjeg
6333a123c8 docs(shields): update shields url 2023-02-19 20:15:28 +08:00
mert
14d66bdb96
fix(mkfontdir): only check for mkfontdir when OS is not Darwin 2023-01-08 12:06:55 +08:00
Olliver Schinagl
9e80d9bbfa
feat:(XDG): add XDG support
* fonts: Ensure mkfontscale is installed

When installing fonts, we have a silent igored error about missing
`mkfontscale` (and `mkfontdir`). Add a requirements check for it, and
'need' it when actually attempting to install fonts.


* fetch_repo: Never change a directory

It is bad practice to change the currents shell working directory. E.g.
never use 'cd' in a script.

For example, if `git pull` crashes, it would leave the user in the git
directory 'somewhere' on his filesystem, potentially causing confusion,
as the following `cd -` command is never executed.

There are of course always exceptions, such as when tooling does not
(easily) support out of tree invocation.

To solve this, run the command in a subshell, which won't touch the
current working directory as the exit of the subshell kept the previous
working directory.

A more difficult alternative would be to pass `--git-dir` and
`--work-tree` along to git, but this would make it far harder to read.

* fetch_repo: Do not duplicate code all over

There is no reason to put `need 'git'` all over the place, when the only
time we truly need it, is if we pull the repo. Make the code a little
less cluttered and a bit easier to read.

* install: Support XDG_CONFIG_HOME

Add support for the XDG specification for XDG_CONFIG_HOME. NeoVIM
already follows this, regular vim needs a bit of help there.

Closes: #3517

* SpaceVim.d: Support XDG paths

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
2022-12-28 14:19:06 +08:00
Ikko Ashimine
09bffd93c0
docs(typo): fix typo in documentation.md
boostrap -> bootstrap
2022-12-28 14:16:14 +08:00
Vladislav Sharapov
3ac0fe27cc
fix(install): fix indentation, remove unnecessary newlines 2022-11-29 19:00:37 +08:00
tbrixen
09593ef85f
docs(typo): fix spelling mistake 2022-11-29 18:59:28 +08:00
Vladislav Sharapov
9cc4d926a7
fix(font): change download font url
Old link redirects to raw.githubusercontent.com.
2022-11-29 18:58:39 +08:00
wsdjeg
885bc3863e docs(layers): fix layers configuration snippet
close https://github.com/SpaceVim/SpaceVim/pull/4751

Co-authored-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
2022-11-14 21:18:41 +08:00
Ricardo Martincoski
8c33a001d7
docs(dev): change commit desc style guide
The vast majority of last 1000 commits do not use a capital letter to
start the <description> field in the commit subject:
$ git log --oneline -n 1000 origin/master | grep ': [A-Z]' | wc -l
11
$ git log --oneline -n 1000 origin/master | grep ': [a-z]' | wc -l
984
Assume this is the new convention and update the doc.
2022-11-14 14:54:04 +08:00
wsdjeg
667a25c8e8 docs(community): remove link to smart-questions
because I do not like the words:

- idiots
- 白痴
2022-11-13 00:19:30 +08:00
wsdjeg
c25a40d3e0 perf(ctags): improve ctags log 2022-11-12 22:39:45 +08:00
wsdjeg
39750dec56 docs(scrollbar): update doc of scrollbar 2022-11-12 20:36:21 +08:00
Wang Shidong
3db40b345a
feat(tasks): add telescope task 2022-11-01 00:21:03 +08:00
wsdjeg
aae60509e8 feat(lang#c): remove invalid entries from neomake 2022-10-30 19:37:01 +08:00
wsdjeg
a23f52bca0 docs(notify): update the doc for notify api 2022-10-29 19:36:11 +08:00
wsdjeg
591f725e18 feat(unstack): include vim-unstack 2022-10-27 15:44:42 +08:00
wsdjeg
f458b75dcb feat(projectmanager): support project_non_root option
the RootchandgeCallback function should only be
called on project.
2022-10-26 18:54:44 +08:00
Wang Shidong
ac74bffee5
feat(zettelkasten): improve zettelkasten layer 2022-10-25 18:35:51 +08:00
wsdjeg
71bc539267 feat(lsp): fix lsp layer options
ref: https://github.com/SpaceVim/SpaceVim/issues/4679
2022-10-24 21:54:20 +08:00
wsdjeg
6cc0fc6486 docs(python): update tutorial for python 2022-10-23 16:21:01 +08:00
wsdjeg
70e3570082 feat(runner): add ctrl-` to close code runner windows 2022-10-23 14:04:09 +08:00
wsdjeg
1258f163c7 docs(community): update development and community page 2022-10-22 09:30:04 +08:00
wsdjeg
cb3e1e1807 docs(runner): add custom runner section 2022-10-22 00:14:13 +08:00
wsdjeg
b488dd5aeb feat(go): update go layer doc
close https://github.com/SpaceVim/SpaceVim/issues/3444
2022-10-21 12:05:12 +08:00
wsdjeg
02afefa413 feat(repl): add i key binding to insert text 2022-10-20 22:33:26 +08:00
Wang Shidong
342c658509
feat(zettelkasten): add zettelkasten layer 2022-10-18 22:55:34 +08:00
Wang Shidong
2e49f02244
feat(iedit): rewrite iedit in lua (#4724) 2022-10-16 13:45:34 +08:00
wsdjeg
1ed769feb2 feat(clipboard): add clipboard#set function 2022-10-11 11:02:00 +08:00
wsdjeg
b8580415e7 docs(index): update index page 2022-10-10 01:12:08 +08:00
wsdjeg
f9c64797a0 docs(website): update community link 2022-10-07 21:00:28 +08:00
wsdjeg
ed993e9284 feat(matrix): update link to matrix 2022-10-07 20:15:58 +08:00
David Vernet
65347eb2dc
typo(website): release
[trivial] Fix minor typo: s/relase/release
2022-10-03 08:44:00 +08:00
wsdjeg
4310f0f6f0 docs(community): add link to facebook 2022-09-27 16:20:08 +08:00
wsdjeg
2adcaae6f5 docs(development): update cn chat link 2022-09-25 22:13:35 +08:00
wsdjeg
346ee8b01e docs(development): update development page 2022-09-25 22:02:02 +08:00
wsdjeg
94546dccd5 docs(community): add link to reddit 2022-09-25 20:08:43 +08:00
wsdjeg
cf7089cfc8 chore(chat): add gitter js 2022-09-25 20:05:09 +08:00
wsdjeg
e6d7b4430a docs(website): update faq
close https://github.com/SpaceVim/SpaceVim/issues/4705
2022-09-25 17:21:59 +08:00
zackzhangkai
3635c7775c
docs(website): typo in website
Signed-off-by: 张凯 <zackzhangkai@gmail.com>

Signed-off-by: 张凯 <zackzhangkai@gmail.com>
Co-authored-by: 张凯 <zackzhangkai@gmail.com>
2022-09-24 20:09:51 +08:00
Ikko Ashimine
b07b5038af
docs(lsp): fix typo in language-server-protocol.md
identifer -> identifier
2022-09-18 12:03:25 +08:00
zackzhangkai
772f830b62
docs(typo): fix typo in website
Signed-off-by: 张凯 <zackzhangkai@gmail.com>

Signed-off-by: 张凯 <zackzhangkai@gmail.com>
Co-authored-by: 张凯 <zackzhangkai@gmail.com>
2022-09-18 12:02:12 +08:00
wsdjeg
9384daa3d6 docs(community): add issue links 2022-09-10 19:23:03 +08:00
Austin Ziegler
9fa6fad9ed
docs(aspectj): AspectJ support has been misspelled
- The filename is correct, but the contents have been misspelled. I've
  used `fastmod` to do a mechanical replace of `asepctj` to `aspectj`.
2022-07-29 07:46:26 +08:00
Alecu Ștefan-Iulian
ba187ae41f
docs(index): add vim versions
Co-authored-by: Ștefan-Iulian Alecu <salecu@talentingsoftware.com>
2022-07-25 21:04:16 +08:00
wsdjeg
15a33422d4 docs(community): update link of the chatting rooms 2022-07-18 19:31:27 +08:00
Arne Neumann
069c620851
docs(website): fix spelling and grammar 2022-07-08 08:26:32 +08:00
wsdjeg
3dbb200fff docs(data#dict): update doc of data#dict api 2022-07-03 14:40:56 +08:00
wsdjeg
5b9ae1e168 chore(version): update version to v2.1.0-dev 2022-07-02 13:56:15 +08:00
Wang Shidong
796be121c0
Release v2.0.0 (#4687) 2022-07-02 13:36:51 +08:00
Musa Ahmed
af07052aab
docs(website): update index page
fixed grammatical errors
2022-06-28 17:53:15 +08:00
Marouane Skandaji
733c38f3fd
fix(install): remove install_fonts 2022-06-26 12:50:25 +08:00
wsdjeg
bbd1d782e3 docs(guide): update lua guide 2022-06-20 10:26:14 +08:00
wsdjeg
1fefa5a595 fix(typo): fix typo in doc 2022-06-18 22:30:55 +08:00
wsdjeg
636e7b7b6b docs(lua): update lua guide 2022-06-18 22:25:23 +08:00
wsdjeg
09e937ee10 docs(guide): add lua guide 2022-06-16 23:41:22 +08:00
wsdjeg
12004cb080 chore(copyright): update copyright 2022-06-12 15:37:35 +08:00
wsdjeg
7982f054e9 docs(document): update documentation 2022-06-12 10:47:35 +08:00
wsdjeg
7a54e4b1dc docs(faq): add faq about using corresponding layer 2022-06-12 10:16:20 +08:00
wsdjeg
ce0113ea37 docs(experience): add user experiences 2022-06-10 16:50:35 +08:00
wsdjeg
d66173b58a feat(pylsp): add support for pylsp 2022-06-07 23:50:28 +08:00
wsdjeg
7f2dd0642d feat(cscope): add list_files_command layer option 2022-06-07 01:03:15 +08:00
wsdjeg
52370a5923 docs(community): add irc channel 2022-06-05 13:17:49 +08:00
wsdjeg
9772523690 docs(discord): update discord link 2022-06-04 23:30:10 +08:00
wsdjeg
2de74a4b4e docs(community): add chatting rooms 2022-06-04 23:22:39 +08:00
wsdjeg
4397ec5814 docs(layers): update layers page 2022-06-04 14:51:36 +08:00
wsdjeg
23aad36728 docs(lang#fennel): add layer page for lang#fennel layer 2022-06-04 14:24:37 +08:00
wsdjeg
403d30af78 feat(ssh): add :SSHCommand command 2022-06-04 14:02:40 +08:00
wsdjeg
ac57a2d430 docs(404): add request path 2022-06-03 22:44:36 +08:00
wsdjeg
51cfa2c350 docs(404): display page url 2022-06-03 22:37:26 +08:00
wsdjeg
862d65c05a docs(ssh): add cn page for ssh layer 2022-06-03 19:59:17 +08:00
wsdjeg
6a56c58a1c docs(c/c++): update c/c++ tutorial 2022-06-03 19:49:36 +08:00
wsdjeg
f8a4655464 docs(typo): fix typo 2022-06-03 13:31:25 +08:00
wsdjeg
e8edaa31db docs(docs): update feature request guidelines 2022-06-03 13:24:46 +08:00
wsdjeg
b47ebda7b5 docs(filetree): update filetree doc 2022-05-30 23:23:29 +08:00
wsdjeg
b10a4b5500 feat(filetree): add user autocmd to override key binding 2022-05-30 21:15:48 +08:00
wsdjeg
0c18fa74f3 docs(font): add font transient state image 2022-05-29 13:51:27 +08:00
wsdjeg
214ca3c3e2 feat(font): add SPC z . key binding 2022-05-29 13:14:43 +08:00
wsdjeg
f3093ccdcf docs(ruby): add rubygems mirror 2022-05-28 20:39:20 +08:00
wsdjeg
52df4ec9fe feat(lang#ruby): use bundle vim-ruby 2022-05-28 19:32:08 +08:00
wsdjeg
3983da1c7b docs(development): update development page 2022-05-28 17:20:24 +08:00
wsdjeg
6ed481a5c4 docs(faq): add extra repo for spacevim 2022-05-28 15:17:58 +08:00
wsdjeg
29806fc75e docs(feedback): disable github issue 2022-05-28 14:12:25 +08:00
wsdjeg
a74e5baefa docs(tools): update tools page 2022-05-28 12:59:27 +08:00
wsdjeg
e85d10ffb5 docs(go): update golang doc 2022-05-27 12:12:30 +08:00
wsdjeg
1efbd9998d docs(format): format documentation text 2022-05-27 11:50:39 +08:00
wsdjeg
50a93380d3 docs(go): update lang#go layer page 2022-05-27 11:48:19 +08:00
wsdjeg
aacd59c418 docs(kotlin): update kotlin guide 2022-05-27 08:41:33 +08:00
wsdjeg
1525b972b5 docs(cmake): add doc for :Cmake command 2022-05-24 23:12:06 +08:00
Wang Shidong
4dbbad92f0
feat(layer): add lang#cmake layer 2022-05-22 17:18:29 +08:00
Wang Shidong
14d9225346
feat(checkers): fix checkers layer option 2022-05-22 17:10:34 +08:00
wsdjeg
290b7906d6 feat(lang#postscript): add lang#postscript layer 2022-05-21 13:59:07 +08:00
wsdjeg
d69df0a152 feat(projectmanager): improve Telescope project extension 2022-05-19 11:07:16 +08:00
wsdjeg
105b2c71eb docs(sponsors): remove salt.bountysource.com 2022-05-19 08:53:39 +08:00
wsdjeg
11f8c784c7 docs(lang#autohotkey): update doc of lang#autohotkey layer 2022-05-19 01:12:23 +08:00
wsdjeg
311a1e5146 docs(telescope): add telescope loadable function 2022-05-19 00:39:30 +08:00
wsdjeg
3daea9e7ae feat(mapping): add SPC f v s to view scriptnames 2022-05-18 13:36:05 +08:00
wsdjeg
d93d79af40 docs(documentation): update fuzzy finder list 2022-05-17 20:57:58 +08:00
wsdjeg
250473c565 docs(weibo): remove link to weibo 2022-05-17 20:17:53 +08:00
Wang Shidong
7237a74889
feat(layer): add telescope layer 2022-05-16 22:20:10 +08:00
wsdjeg
080c793261 docs(documentation): update doc about code runner and repl
close https://github.com/SpaceVim/SpaceVim/issues/4657
2022-05-08 22:08:54 +08:00
wsdjeg
a7db14e865 feat(layer): add lang#jsonnet layer 2022-05-08 19:01:53 +08:00
wsdjeg
d95368b008 docs(chat): remove bridged room 2022-05-08 09:47:36 +08:00
wsdjeg
ef91379652 fix(install): fix install.cmd
close https://github.com/SpaceVim/SpaceVim/issues/4663
2022-05-05 21:25:01 +08:00
Kristof Ostir
7997125071
docs(core): update docs to clarify location of settings 2022-05-05 17:36:42 +08:00
wsdjeg
0b41ab97cc fix(vimchat): fix ctrl-w key binding
`ctrl-w` do not delete `.` before cursor
2022-05-03 11:04:00 +08:00
wsdjeg
4112e478aa docs(faq): add faq about init.toml format 2022-05-03 10:49:09 +08:00
wsdjeg
486d5d992d docs(faq): update faq page 2022-05-02 14:27:00 +08:00
wsdjeg
88744e039f docs(sponsors): update sponsorship 2022-05-01 21:08:53 +08:00
wsdjeg
99b5771285 feat(chat): support push multiple messages 2022-05-01 14:13:34 +08:00
wsdjeg
4f82741d7a docs(gitter): add doc for gitter_token 2022-04-30 13:28:01 +08:00
wsdjeg
f5238e15d0 docs(chat): add image for chat layer 2022-04-30 02:14:19 +08:00
wsdjeg
29dcb31e47 feat(lang#c): update lsp key binding for lang#c layer 2022-04-26 01:45:08 +08:00
wsdjeg
a5b08d26ca docs(development): update language specified key bindings 2022-04-26 01:05:28 +08:00
wsdjeg
8e7c522cb6 docs(scala): update scala post 2022-04-24 23:16:00 +08:00
Wang Shidong
cd1e33a1eb
docs(scala): add post about using vim as scala ide 2022-04-24 15:13:52 +08:00
wsdjeg
205d2c7cd6 feat(haxe): add repl support for haxe 2022-04-23 23:23:08 +08:00
wsdjeg
0580b46668 docs(haxe): add page for lang#haxe layer 2022-04-23 23:11:04 +08:00
wsdjeg
9d627870d8 docs(documentation): update mouse and scrollbar section 2022-04-23 22:53:40 +08:00
wsdjeg
e6ae82c892 docs(teal): add page for lang#teal layer 2022-04-23 21:32:35 +08:00
wsdjeg
bfb5444c34 feat(major_mode): add wrap line major mode icon 2022-04-23 16:50:28 +08:00
wsdjeg
421fcf273d docs(development): update development page 2022-04-23 15:48:14 +08:00
wsdjeg
5e7db7bae4 docs(runner): update code runner doc 2022-04-23 10:55:36 +08:00
wsdjeg
10098fdf37 feat(mapping): improve SPC w m key binding 2022-04-23 10:31:59 +08:00
wsdjeg
eaf29aff63 docs(faq): add guide for manual installation 2022-04-22 22:07:55 +08:00
Kristof Ostir
faf0a6b494
docs(faq): update doc for manual installation
close https://gitee.com/spacevim/SpaceVim/issues/I1SHU7
2022-04-22 18:32:16 +08:00
wsdjeg
f07916c9e7 feat(rust): use bundle rust.vim
close https://github.com/SpaceVim/SpaceVim/issues/4620
2022-04-22 16:43:25 +08:00
wsdjeg
7e32e062d6 feat(colorscheme): add dracula
close https://github.com/SpaceVim/SpaceVim/issues/4063
2022-04-22 13:54:14 +08:00
wsdjeg
4b617500ec docs(scrollbar): add doc about scrollbar 2022-04-22 11:53:22 +08:00
wsdjeg
37ed3bd235 chore(website): use gtag.js 2022-04-20 23:40:20 +08:00
Kristof Ostir
a1b65988e7
fix(core): fix Windows install script && update faq 2022-04-20 01:31:23 +08:00
wsdjeg
1611aecc49 feat(verilog): add lang#verilog layer 2022-04-15 20:36:45 +08:00
wsdjeg
2eadc4c439 docs(video): add link to Getting Started With SpaceVim 2022-04-15 10:57:50 +08:00
tiwe0
e6dc367a83
docs(C/C++): fix typos in vim as C/C++ IDE 2022-04-13 19:25:39 +08:00
wsdjeg
e32ec1f886 fix(lang#php)!: change g D key binding
BREAKING CHANGE: use `g D` to jump to declaration
2022-04-13 19:19:48 +08:00
wsdjeg
dc01a27d4a docs(php): update doc of lang#php layer 2022-04-13 17:46:41 +08:00
wsdjeg
39cbef5f3f fix(fonts): download Sauce Code Pro Nerd Font automatically
close https://github.com/SpaceVim/SpaceVim/issues/4616
2022-04-12 16:04:44 +08:00
wsdjeg
ca969ce065 feat(ctrlg): add ctrl-g key binding to display project info 2022-04-11 23:00:31 +08:00
wsdjeg
10334308c9 docs(wiki): update following HEAD page 2022-04-11 16:58:13 +08:00
wsdjeg
813ad6c950 feat(todomanager): add todo_prefix option
close https://github.com/SpaceVim/SpaceVim/issues/3819
2022-04-10 21:37:27 +08:00
wsdjeg
d9c799bbee docs(link): fix links 2022-04-09 08:24:01 +08:00
wsdjeg
33a5aa2ed4 fix(page): update post date 2022-04-09 08:17:17 +08:00
Wang Shidong
6200d7085d
docs(iedit): add article for iedit 2022-04-09 08:13:05 +08:00
wsdjeg
e1aba6d16e docs(iedit): update documentation page 2022-04-09 01:27:14 +08:00
Sébastien Santoro
0d61594246
docs(gtags): document ctags_bin gtags layer option 2022-04-05 20:45:37 +08:00
wsdjeg
08089d68e0 docs(php): update doc for php lsp support
ref https://github.com/SpaceVim/SpaceVim/issues/4619
2022-04-05 12:39:56 +08:00
wsdjeg
1144ada6c9 docs(custom_plugins): add doc for adding multiple plugins
ref https://github.com/SpaceVim/SpaceVim/issues/73
2022-04-04 18:17:36 +08:00
wsdjeg
2506fec3a0 feat(mapping): add SPC f R to rename current file 2022-04-04 14:35:55 +08:00
wsdjeg
6a3d1968ab fix(test): update Makefile 2022-04-03 22:50:58 +08:00
wsdjeg
e1e2138080 docs(weisite): update website documentation 2022-03-31 12:50:48 +08:00
wsdjeg
c3eaaf59f4 docs(tutorial): update vim script guide 2022-03-30 15:33:29 +08:00
wsdjeg
33cc57af55 chore(copyright): update email 2022-03-27 13:38:54 +08:00
wsdjeg
8677c8a830 feat(mapping): add SPC b o to kill all buffers and windows 2022-03-23 14:10:09 +08:00
wsdjeg
db7dee960f feat(checkers): add lint_exclude_filetype option
close https://github.com/SpaceVim/SpaceVim/issues/4553
2022-03-22 19:17:40 +08:00
wsdjeg
3dccacb0d8 fix(ui): fix indentline_exclude_filetype option 2022-03-22 19:11:29 +08:00
wsdjeg
88f4eac845 docs(mail): add doc for mail layer 2022-03-22 18:52:13 +08:00
Russell
27c0f5585c
docs(kotlin): update doc for kotlin layer
Signed-off-by: Russell Richardson <admin@russ.network>
2022-03-22 12:07:12 +08:00
wsdjeg
298eac3cee fix(install): fix install script
close https://github.com/SpaceVim/SpaceVim/issues/4598
2022-03-20 11:06:37 +08:00
wsdjeg
c299cebb7f docs(quick-guide): add doc for switch to specific version
close https://github.com/SpaceVim/SpaceVim/issues/4573
2022-03-19 20:19:09 +08:00
Kun Lin
b1a3c0510c
feat(markdown): add a new key binding for RemoveToc 2022-03-19 20:10:56 +08:00
sisynb
2c8ebf9c40
docs(lsp): add description for nvim(>=0.5.0) 2022-03-19 20:09:47 +08:00
Kun Lin
e1d68de4c2
feat(edit): add reverse-lines key binding 2022-02-26 11:03:48 +08:00
Elliott Crifasi
6b34744062
docs(clojure): typo in clojure doc 2022-02-26 11:01:36 +08:00
Grafcube
489edbaeda
feat(test): add vim ultest 2022-02-19 08:54:42 +08:00
Grafcube
e61e78b0bc
feat(format): add silent_format to format layer 2022-02-08 23:11:57 +08:00
wsdjeg
e244e280ac docs(edit): fix typo in edit page 2022-02-06 23:36:28 +08:00
wsdjeg
d8075dd932 docs(edit): update cn edit page 2022-02-06 14:12:18 +08:00
wsdjeg
08de9d7046 chore(sponsors): update sponsors page 2022-02-06 13:42:59 +08:00
wsdjeg
01934e0152 docs(website): fix type in edit layer page 2022-02-05 22:58:30 +08:00
wsdjeg
53ec0d171f docs(website): update edit layer doc 2022-02-05 22:57:15 +08:00
Wang Shidong
e45363331d
docs(python): add doc for enable +py3 2022-02-03 23:16:46 +08:00
wsdjeg
9685aa13d4 feat(buffer): add SPC b ctrl-shift-d to kill buffer by regexp 2022-02-03 22:46:50 +08:00