wsdjeg
91cc06bf4c
fix(clojure): fix repl key binding
2023-04-01 21:33:54 +08:00
wsdjeg
170cfcc38d
feat(clojure): add lsp specific key bindings
2023-04-01 21:29:26 +08:00
wsdjeg
34934b2bd7
docs(runner): update the doc of code runner
2023-03-31 23:38:01 +08:00
wsdjeg
d518040658
fix(issue): use systemlist instead to avoid CR LF
2023-03-31 12:30:58 +08:00
wsdjeg
f4997db25d
docs(projectmanager): update doc for :OpenProject
2023-03-31 12:18:23 +08:00
wsdjeg
a9c4268f8b
fix(projectmanager): fix :OpenProject
command
2023-03-31 00:01:47 +08:00
wsdjeg
7b1f0b5d3a
fix(plugins): fix get_config_name function
...
close https://github.com/SpaceVim/SpaceVim/issues/4817
2023-03-30 23:28:30 +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
899a1943f6
fix(coc): fix coc tab
&& S-tab
keybinding
2023-03-30 11:03:42 +08:00
wsdjeg
f450732164
chore(coc): use bundle coc.nvim
2023-03-30 10:48:58 +08:00
wsdjeg
2f132784aa
feat(grammarous): add grammarous key bindings
2023-03-29 18:01:18 +08:00
wsdjeg
8513066ee1
fix(java): disable neomake when lsp enabled
2023-03-29 13:41:52 +08:00
wsdjeg
5f519c99c9
fix(javalsp): disable omni source when lsp enabled
2023-03-29 13:17:26 +08:00
wsdjeg
423e83e479
fix(javalsp): fix jdtls_home
2023-03-29 12:24:36 +08:00
wsdjeg
10043da351
fix(lsp): update lspconfig
2023-03-29 11:59:27 +08:00
wsdjeg
54b1170497
feat(edit): add grammar checking plugin
2023-03-28 23:43:55 +08:00
wsdjeg
1fdc034d7e
docs(python): update python layer key bindings
2023-03-28 23:21:22 +08:00
wsdjeg
1185975cb7
feat(python): add python_imports plugin
...
close https://github.com/SpaceVim/SpaceVim/issues/4242
2023-03-28 19:03:52 +08:00
wsdjeg
24dba7b23e
fix(job): fix job api
2023-03-28 13:49:07 +08:00
wsdjeg
73cf51975b
fix(xmake): fix xmake function name
2023-03-28 12:28:20 +08:00
wsdjeg
6ebee744ca
feat(xmake): add xmake support
2023-03-28 12:14:51 +08:00
wsdjeg
e6ac093930
fix(diff): fix diff mode
...
close https://github.com/SpaceVim/SpaceVim/issues/4802
2023-03-26 13:57:31 +08:00
wsdjeg
de3ec27729
chore(copyright): update copyright
2023-03-26 13:50:22 +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
9a33b7f001
feat(plantuml): fix lang#plantuml
layer
...
close https://github.com/SpaceVim/SpaceVim/issues/4804
2023-03-25 15:22:49 +08:00
wsdjeg
595d98247f
docs(lang): update language doc
2023-03-24 09:28:35 +08:00
wsdjeg
4ff428b7a0
fix(list): fix default list mode
2023-03-24 09:21:57 +08:00
wsdjeg
fa888ffb8d
feat(option): add enable_list_mode
option
...
close https://github.com/SpaceVim/SpaceVim/issues/4801
2023-03-24 09:13:44 +08:00
Nikita Antonenkov
5cf632446b
fix(erlang): fix erlang and lsp layers
2023-03-11 19:27:28 +08:00
Alexandr Kozlenkov
ecea7b4322
fix(status): fix index array
2023-03-11 19:26:17 +08:00
Lyle McKarns
d757a9a17b
feat(powershell): Adding quite options to powershell exec
...
Customized profiles can/do break in non-standard terminals, increase execution time, and usually don't help in this context. I'm suggesting a change to an "embedded" or "script" style launching of powershell to accommodate this.
2023-02-21 14:03:31 +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
wsdjeg
1f907973b8
fix(color): fix color vader test
2022-11-21 23:41:49 +08:00
wsdjeg
2fb4a62e36
fix(color): update color map
2022-11-21 23:31:09 +08:00
wsdjeg
4d02ee3f49
feat(file): add icon for toml file
2022-11-20 22:20:17 +08:00
wsdjeg
961538fc91
fix(colorscheme): fix VertSplit highlight
2022-11-20 22:09:36 +08:00
wsdjeg
53c3865f53
docs(file): add filetype icons
2022-11-20 16:45:36 +08:00
wsdjeg
3d63320771
docs(colorscheme): update doc of colorscheme layer
2022-11-19 20:28:32 +08:00
wsdjeg
ead0478037
fix(typo): fix typo in r and swift layer
...
merge https://github.com/SpaceVim/SpaceVim/pull/4745
Co-authored-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
2022-11-15 07:27:43 +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
wsdjeg
a2ee3119b5
docs(dockerfile): fix typo
2022-11-14 21:09:07 +08:00
wsdjeg
297314e63e
docs(dockerfile): update dockerfile doc
...
merge https://github.com/SpaceVim/SpaceVim/pull/4744
Co-authored-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
2022-11-14 21:07:16 +08:00
wsdjeg
1a6160e1cd
docs(colorscheme): add missing list
...
merge 3bc0a1ad21
close https://github.com/SpaceVim/SpaceVim/pull/4746
Co-authored-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
2022-11-14 20:57:53 +08:00
Ricardo Martincoski
1d96c391fa
docs(changelog): update :h SpaceVim-changelog
2022-11-14 20:46:44 +08:00
Ricardo Martincoski
1e4b1216d2
fix(typo): buildin -> builtin
2022-11-14 15:01:20 +08:00
Ricardo Martincoski
be9c746d7a
fix(typo): ldefault -> default
2022-11-14 14:59:28 +08:00
Ricardo Martincoski
042f310fea
fix(typo): sinippet -> snippet
2022-11-14 14:57:15 +08:00
Ricardo Martincoski
77dbb96091
fix(typo): Ket -> Key
2022-11-14 14:54:48 +08:00
wsdjeg
3f14a86e0d
feat(markdown): use bundle markdown plugin
2022-11-13 23:20:09 +08:00
wsdjeg
f0ca1bc6c5
fix(bootstrap): skip error in toml file
2022-11-13 22:24:23 +08:00
wsdjeg
852add00b8
perf(health): improve layer health checking
2022-11-13 15:41:15 +08:00
wsdjeg
6afcc76a49
fix(startup): fix startify
...
close https://github.com/SpaceVim/SpaceVim/issues/4706
2022-11-13 00:02:20 +08:00
wsdjeg
a85c19a990
perf(scrollbar): disable scrollbar in git commit buffer
2022-11-12 22:19:00 +08:00
wsdjeg
6f96cce5e5
feat(maven): add maven task provider
2022-11-02 11:37:42 +08:00
wsdjeg
91e367637a
fix(projectmanager): fix root sort function
2022-11-02 10:47:42 +08:00
wsdjeg
0a7ec1a1c5
fix(java): build classpath when switch project
2022-11-02 09:38:10 +08:00
wsdjeg
88489db9c2
fix(checkers): fix statusline for checkers layer
2022-11-02 01:48:12 +08:00
wsdjeg
6ad45ced73
fix(java): enable jc2 only when no lsp
2022-11-02 00:44:01 +08:00
wsdjeg
2a7798f009
perf(java): change javac display language to en
2022-11-02 00:41:14 +08:00
wsdjeg
2e1ad13d21
chore(java): use bundle javacomplete2
2022-11-02 00:34:34 +08:00
Wang Shidong
3db40b345a
feat(tasks): add telescope task
2022-11-01 00:21:03 +08:00
wsdjeg
d6ace74117
fix(lang#c): disable clangx when lsp enabled
2022-10-30 22:00:44 +08:00
wsdjeg
aae60509e8
feat(lang#c): remove invalid entries from neomake
2022-10-30 19:37:01 +08:00
wsdjeg
e9ecbbc530
feat(notify): support notify multiple lines
2022-10-27 22:27:56 +08:00
wsdjeg
a6c5d56311
fix(gitcommit): fix gitcommit plugin
2022-10-27 17:55:42 +08:00
wsdjeg
591f725e18
feat(unstack): include vim-unstack
2022-10-27 15:44:42 +08:00
wsdjeg
91fd3ad573
perf(git): use notify instead of echo
2022-10-27 00:27:02 +08:00
wsdjeg
975e1d5088
perf(git): add git command
2022-10-27 00:23:49 +08:00
wsdjeg
0a0b74f09b
fix(transient): fix transient_state quit key
2022-10-27 00:19:08 +08:00
wsdjeg
ca81fb2a96
perf(git): use git.vim instead of terminal
2022-10-26 23:57:40 +08:00
wsdjeg
6950d163f3
feat(vcs): fix log grep option
2022-10-26 23:07:58 +08:00
wsdjeg
0d26faa31d
perf(scrollbar): disable scrollbar for tagbar and defx
2022-10-26 18:27:46 +08:00
wsdjeg
665727ada3
fix(projectmanager): remove log info
2022-10-26 17:35:33 +08:00
wsdjeg
e22871492f
feat(cheat): ignore readfile error
2022-10-25 23:59:26 +08:00
wsdjeg
4446ad9663
chore(cheat): use bundle vim-cheat
2022-10-25 22:39:37 +08:00
Wang Shidong
ac74bffee5
feat(zettelkasten): improve zettelkasten layer
2022-10-25 18:35:51 +08:00
wsdjeg
7c656469bf
feat(leader): add custom leader function
...
close https://github.com/SpaceVim/SpaceVim/issues/3611
2022-10-24 22:24: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
1629ba4c92
perf(notify): change notify step timer
2022-10-23 21:22:18 +08:00
wsdjeg
76a8fd42cc
feat(statusline): change statusline for python doc win
2022-10-23 16:12:59 +08:00
wsdjeg
459d676373
chore(jedi): use bundle deoplete_jedi
...
arty/typeshed/tests/stubtest_whitelists/py36.txt
2022-10-23 16:00:31 +08:00
wsdjeg
a3bd1d31c7
chore(jedi): use bundle jedi-vim
2022-10-23 15:41:52 +08:00
wsdjeg
b2af9f5479
fix(leader): fix default_custom_leader option
...
close https://github.com/SpaceVim/SpaceVim/issues/4710
2022-10-23 14:32:47 +08:00
wsdjeg
70e3570082
feat(runner): add ctrl-` to close code runner windows
2022-10-23 14:04:09 +08:00
wsdjeg
d2d3c1c878
fix(gtags): add warning info for executable checking
2022-10-22 11:42:19 +08:00
wsdjeg
02afefa413
feat(repl): add i
key binding to insert text
2022-10-20 22:33:26 +08:00
wsdjeg
8ec9409fda
feat(todo): use lua todo manager for neovim
2022-10-20 21:19:38 +08:00
wsdjeg
961b65a6c3
feat(iedit): use lua by default for nvim
2022-10-19 23:14:55 +08:00
Wang Shidong
342c658509
feat(zettelkasten): add zettelkasten layer
2022-10-18 22:55:34 +08:00
wsdjeg
0b91495ff2
fix(tabline): fix undefined s:lsep variable
...
close https://github.com/SpaceVim/SpaceVim/issues/4723
2022-10-13 10:39:59 +08:00
wsdjeg
61cc23b8a0
fix(statusline): init statusline separators
2022-10-13 10:39:00 +08:00
wsdjeg
d6b2a46129
feat(searcher): rewrite searcher in lua
2022-10-10 22:27:53 +08:00
wsdjeg
888ff60fa9
feat(flygrep): support preview item
2022-10-10 13:58:09 +08:00
wsdjeg
e66aad013e
docs(option): add :h SpaceVim-options-disabled_plugins
2022-10-10 02:08:14 +08:00
wsdjeg
e7cb486364
feat(edit): use lua plugin for nvim 0.7
2022-09-27 23:54:04 +08:00
wsdjeg
e424f8e58b
chore(go): use bundle vim-go and deoplete-go
2022-09-27 16:40:44 +08:00
wsdjeg
80ed3d2419
feat(screensaver): use bundle screensaver
2022-09-25 21:20:35 +08:00