Roey Darwish Dror
4ee6be4499
fix(lazygit): file history when cwd is outside the repo ( #4666 )
...
## Description
When using `<leader>gf` Lazygit is launched in the current directory
rather than the root directory.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-11-01 22:47:03 +01:00
Folke Lemaitre
cb40a09538
fix(autocmds): close window and force delete buf on q. See #4638
2024-10-24 17:18:01 +02:00
Folke Lemaitre
0eb400908d
fix(autocmds): force close buffers with q. See #4638
2024-10-24 09:25:03 +02:00
Iordanis Petkakis
5f432d997e
fix(autocmds): change mapping for lazyvim_close_with_q
( #4638 )
...
## Description
Currently `checkhealth` buffers stay visible on `bufferline` when you
close them with `q`. Use `:bd` instead to delete the buffer from
bufferlist. `vim.schedule` is needed because `LspInfo` adds its own
mapping to close the window (see
[here](edd9591199/lua/lspconfig/health.lua (L328)
)),
so we need to overwrite it.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
None
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-10-24 08:30:17 +02:00
github-actions[bot]
7c7c196a78
chore(main): release 12.43.0 ( #4630 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.43.0](https://github.com/LazyVim/LazyVim/compare/v12.42.0...v12.43.0 )
(2024-10-23)
### Features
* **catppuccin:** bufferline integration. Closes
[#4583 ](https://github.com/LazyVim/LazyVim/issues/4583 ). Closes
[#4581 ](https://github.com/LazyVim/LazyVim/issues/4581 )
([917c685
](917c685c1f
))
* **extras:** expose `prios` to users for customization
([#4587 ](https://github.com/LazyVim/LazyVim/issues/4587 ))
([e46cb62
](e46cb62a17
))
* **keymaps:** allow `v:count1` when moving lines
([#4618 ](https://github.com/LazyVim/LazyVim/issues/4618 ))
([b4eb4e1
](b4eb4e1f4a
))
### Bug Fixes
* **folds:** enable folds when treesitter available. Fixes
[#4563 ](https://github.com/LazyVim/LazyVim/issues/4563 )
([fe7003d
](fe7003de50
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-23 11:55:48 +02:00
Iordanis Petkakis
b4eb4e1f4a
feat(keymaps): allow v:count1
when moving lines ( #4618 )
...
## Description
Allow user to use `v:count1` when moving lines
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
Closes #4615 .
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-10-23 11:40:31 +02:00
github-actions[bot]
13a4a84e34
chore(main): release 12.42.0 ( #4535 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.42.0](https://github.com/LazyVim/LazyVim/compare/v12.41.0...v12.42.0 )
(2024-10-04)
### Features
* **root:** provide `vim.g.root_lsp_ignore` to ignore LSP servers
([#4332 ](https://github.com/LazyVim/LazyVim/issues/4332 ))
([90a9231
](90a92312ae
))
### Bug Fixes
* **gitsigns:** change name of filetype blame
([#4243 ](https://github.com/LazyVim/LazyVim/issues/4243 ))
([3e257fd
](3e257fdb88
))
* **neotest:** properly initialize adapter with call table. Fixes
[#4538 ](https://github.com/LazyVim/LazyVim/issues/4538 )
([327e829
](327e829c15
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-05 00:01:48 +02:00
Iordanis Petkakis
90a92312ae
feat(root): provide vim.g.root_lsp_ignore
to ignore LSP servers ( #4332 )
...
## Description
This provides `vim.g.root_lsp_ignore` for users to customize which LSP
servers should be taken into account when evaluating the LSP `root_dir`.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
Closes #4330
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-10-03 15:55:25 +02:00
Iordanis Petkakis
3e257fdb88
fix(gitsigns): change name of filetype blame ( #4243 )
...
## Description
There was a change in `gitsigns` filetype name for blame.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
No
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-10-03 15:47:09 +02:00
github-actions[bot]
d5a4ced75a
chore(main): release 12.41.0 ( #4526 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.41.0](https://github.com/LazyVim/LazyVim/compare/v12.40.0...v12.41.0 )
(2024-10-02)
### Features
* **rust:** update rustaceanvim
([#4477 ](https://github.com/LazyVim/LazyVim/issues/4477 ))
([04515b1
](04515b1399
))
* **toggle:** add more `M.wk` fields for better user customization
([#4521 ](https://github.com/LazyVim/LazyVim/issues/4521 ))
([57c0c0b
](57c0c0bc9f
))
### Bug Fixes
* **extras:** migrate away from deprecated `get_target_window()` in
mini-files ([#4479 ](https://github.com/LazyVim/LazyVim/issues/4479 ))
([b110550
](b110550393
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-02 11:29:17 +02:00
github-actions[bot]
dee5e18cf6
chore(main): release 12.40.0 ( #4522 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.40.0](https://github.com/LazyVim/LazyVim/compare/v12.39.0...v12.40.0 )
(2024-10-02)
### Features
* **lang:** add ts_ls to lsp config
([#4406 ](https://github.com/LazyVim/LazyVim/issues/4406 ))
([34f0e56
](34f0e568d4
))
### Bug Fixes
* **extras:** rename `lspconfig.server_configurations` to
`lspconfig.configs`
([#4518 ](https://github.com/LazyVim/LazyVim/issues/4518 ))
([7432574
](74325743e7
))
* **lsp:** backward compat with lspconfig refactor. Fixes
[#4525 ](https://github.com/LazyVim/LazyVim/issues/4525 ). See
[#4518 ](https://github.com/LazyVim/LazyVim/issues/4518 )
([6e40252
](6e4025229d
))
* **render-markdown:** remove redundant `opts.file_types`
([#4506 ](https://github.com/LazyVim/LazyVim/issues/4506 ))
([9b17672
](9b1767205c
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-02 10:19:57 +02:00
github-actions[bot]
a1c3ec4cd4
chore(main): release 12.39.0 ( #4376 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.39.0](https://github.com/LazyVim/LazyVim/compare/v12.38.2...v12.39.0 )
(2024-09-18)
### Features
* **cmp:** better c-n and c-p mapping fallback. Fixes
[#4414 ](https://github.com/LazyVim/LazyVim/issues/4414 )
([86d4f14
](86d4f14bc8
))
* **lazygit:** allow user to override LazyVim config with custom file
([#4367 ](https://github.com/LazyVim/LazyVim/issues/4367 ))
([41a8f3a
](41a8f3a5fb
))
* **persistence:** added leader-qS to select a session
([5a0122b
](5a0122b619
))
* **vscode:** make use of vscode builtin terminal
([#4392 ](https://github.com/LazyVim/LazyVim/issues/4392 ))
([ead5955
](ead5955bef
))
### Bug Fixes
* **extra:** make copilot-chat.lua fallback to the latest model
([#4411 ](https://github.com/LazyVim/LazyVim/issues/4411 ))
([ae17b32
](ae17b321c7
))
* **grug:** grug_far -> grug.open
([#4404 ](https://github.com/LazyVim/LazyVim/issues/4404 ))
([746ea8f
](746ea8f1e6
))
* **markdown-preview:** unknown function `mkdp#util#install`
([#4196 ](https://github.com/LazyVim/LazyVim/issues/4196 ))
([b892861
](b892861bde
))
* **ocaml:** get_language_id
([#4327 ](https://github.com/LazyVim/LazyVim/issues/4327 ))
([6dcd979
](6dcd9794b1
))
* **omnisharp:** use Go To Definition with fzf.lua
([#4260 ](https://github.com/LazyVim/LazyVim/issues/4260 ))
([39ca76c
](39ca76c960
))
* **toggle:** diagnostics enable/disable. See
[#4205 ](https://github.com/LazyVim/LazyVim/issues/4205 )
([3dbace9
](3dbace941e
))
* **toggle:** make `diagnostics` compatible with nvim-0.9.5
([#4205 ](https://github.com/LazyVim/LazyVim/issues/4205 ))
([c012f85
](c012f85959
))
* **vue:** ensure css treesitter installed
([#4308 ](https://github.com/LazyVim/LazyVim/issues/4308 ))
([627215a
](627215a72b
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-09-18 20:46:29 +02:00
Iordanis Petkakis
41a8f3a5fb
feat(lazygit): allow user to override LazyVim config with custom file ( #4367 )
...
## Description
This takes into consideration an additional file, if it exists, to
extend `LG_CONFIG_FILE` environment variable, so that users can
overwrite easier default LazyVim options set for lazygit in
`lazygit-theme.yml`. It's not desirable to directly change
`lazygit-theme.yml` as the values are hardcoded and regenerated upon
colorscheme change.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
Fixes #4364 . Ideally, the problem about `nvim-remote` on Windows should
be fixed on lazygit's side, so this is just kind of a hotfix in the
meantime. Feel free to disregard this if not desirable.
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-08-31 09:18:20 +02:00
github-actions[bot]
12818a6cb4
chore(main): release 12.38.2 ( #4178 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.38.2](https://github.com/LazyVim/LazyVim/compare/v12.38.1...v12.38.2 )
(2024-07-25)
### Bug Fixes
* **news:** pcall diag when showing news for older Neovim versions
([94bf4f9
](94bf4f9324
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-25 11:07:00 +02:00
github-actions[bot]
bcbab77f0c
chore(main): release 12.38.1 ( #4167 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.38.1](https://github.com/LazyVim/LazyVim/compare/v12.38.0...v12.38.1 )
(2024-07-24)
### Bug Fixes
* **autcmds:** added grug-far to close with q
([3282721
](328272144c
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-24 18:49:45 +02:00
Folke Lemaitre
328272144c
fix(autcmds): added grug-far to close with q
2024-07-24 18:18:00 +02:00
github-actions[bot]
71b2690582
chore(main): release 12.38.0 ( #4158 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.38.0](https://github.com/LazyVim/LazyVim/compare/v12.37.0...v12.38.0 )
(2024-07-24)
### Features
* **markdown:** markdown-render toggle
([c8d0faf
](c8d0faf9b1
))
* **markdown:** replace `headlines.nvim` by `markdown.nvim`
([#4139 ](https://github.com/LazyVim/LazyVim/issues/4139 ))
([264abdf
](264abdf9d5
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-24 08:30:15 +02:00
github-actions[bot]
489a7a8e84
chore(main): release 12.37.0 ( #4147 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.37.0](https://github.com/LazyVim/LazyVim/compare/v12.36.0...v12.37.0 )
(2024-07-24)
### Features
* **catppuccin:** enable grug-far integration
([#4156 ](https://github.com/LazyVim/LazyVim/issues/4156 ))
([4bf6d85
](4bf6d856a8
))
* **elixir:** add elixirls code actions
([#4148 ](https://github.com/LazyVim/LazyVim/issues/4148 ))
([f94a059
](f94a0591b3
))
### Bug Fixes
* **dap:** don't mess up DAP adapters provided by nvim-dap-python
([#4141 ](https://github.com/LazyVim/LazyVim/issues/4141 ))
([940d7df
](940d7df59a
))
* **dap:** extend dap.configurations from .vscode/launch.json
([#4106 ](https://github.com/LazyVim/LazyVim/issues/4106 ))
([caf227d
](caf227dd08
))
* **grug-far:** use new transient option
([1c2be20
](1c2be200c1
))
* **keymaps:** leader-wd
([f0d8b8b
](f0d8b8b293
))
* **keymaps:** leader-wm
([391f506
](391f506295
))
* **news:** deprecated API
([f6cd4a3
](f6cd4a38c6
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-24 07:05:03 +02:00
Folke Lemaitre
391f506295
fix(keymaps): leader-wm
2024-07-24 07:03:45 +02:00
Folke Lemaitre
f0d8b8b293
fix(keymaps): leader-wd
2024-07-23 08:29:08 +02:00
Folke Lemaitre
1c2be200c1
fix(grug-far): use new transient option
2024-07-22 23:26:03 +02:00
github-actions[bot]
03968eb3f0
chore(main): release 12.36.0 ( #4135 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.36.0](https://github.com/LazyVim/LazyVim/compare/v12.35.1...v12.36.0 )
(2024-07-22)
### Features
* **grug-far:** no longer needed to call visual replace separately
([72d0cad
](72d0cad353
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-22 14:25:04 +02:00
github-actions[bot]
8db2f3af39
chore(main): release 12.35.1 ( #4131 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.35.1](https://github.com/LazyVim/LazyVim/compare/v12.35.0...v12.35.1 )
(2024-07-21)
### Bug Fixes
* **grug-far:** only prefill files filter when file has an extension.
Closes [#4130 ](https://github.com/LazyVim/LazyVim/issues/4130 )
([6411ab0
](6411ab0897
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-21 17:34:32 +02:00
github-actions[bot]
fca038b433
chore(main): release 12.35.0 ( #4128 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.35.0](https://github.com/LazyVim/LazyVim/compare/v12.34.0...v12.35.0 )
(2024-07-21)
### Features
* **python:** default to new ruff instead of ruff_lsp
([#4126 ](https://github.com/LazyVim/LazyVim/issues/4126 ))
([61ce1cf
](61ce1cfaaf
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-21 15:53:07 +02:00
github-actions[bot]
43dbe0e60d
chore(main): release 12.34.0 ( #4121 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.34.0](https://github.com/LazyVim/LazyVim/compare/v12.33.0...v12.34.0 )
(2024-07-20)
### Features
* **editor:** replace nvim-spectre with grug-far.nvim
([#4099 ](https://github.com/LazyVim/LazyVim/issues/4099 ))
([0d561a3
](0d561a3226
))
* **indent-blankline:** add which-key toggles
([#4122 ](https://github.com/LazyVim/LazyVim/issues/4122 ))
([a997152
](a997152eb2
))
### Bug Fixes
* **conform:** changes for new conform.nvim config
([eed91a3
](eed91a3e4c
))
* **toggle:** safe toggle get
([c8ab5d7
](c8ab5d7554
))
### Performance Improvements
* **core:** defer clipboard because xsel and pbcopy can be slow
([#4120 ](https://github.com/LazyVim/LazyVim/issues/4120 ))
([578f06e
](578f06e140
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-20 22:27:04 +02:00
Folke Lemaitre
0d561a3226
feat(editor): replace nvim-spectre with grug-far.nvim ( #4099 )
...
## Description
I'm considering to replace
[nvim-spectre](https://github.com/nvim-pack/nvim-spectre ) with
[grug-far.nvim](https://github.com/MagicDuck/grug-far.nvim ).
It has a better ui and I like the workflow better.
I won't merge this right away. I'm mostly looking for feedback on
whether this would be a good thing and whether the defaults option I've
added seem ok.
## Related Issue(s)
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots

## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-07-20 21:39:39 +02:00
abeldekat
578f06e140
perf(core): defer clipboard because xsel and pbcopy can be slow ( #4120 )
...
## Description
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
See [this](https://github.com/LazyVim/LazyVim/discussions/4112 )
discussion
TLDR:
Startup time performance is affected quite significantly when the
clipboard provider is `xsel`(linux) or `pbcopy`(macos). I expect an
improvement in these cases, especially on older pc's.
This PR resets `vim.opt.clipboard` after the `options` are loaded. Then,
on `VeryLazy`, the setting is restored.
I also tested with `yanky`.
Relevant prints:
1. Before resetting `vim.opt.clipboard` in `init`,
`vim.print(vim.opt.clipboard)` yields a table which will be captured:
```lua
--- fields
_name = "clipboard",
_value = "unnamedplus",
--- more fields
```
2. Set `vim.opt.clipboard = ""` and `vim.print(vim.opt.clipboard)`, also
yields a table:
```lua
--- fields
_name = "clipboard",
_value = "",
--- more fields
```
## Related Issue(s)
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
Co-authored-by: abeldekat <abel@nomail.com>
2024-07-20 11:48:11 +02:00
github-actions[bot]
64afb5f007
chore(main): release 12.33.0 ( #4102 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.33.0](https://github.com/LazyVim/LazyVim/compare/v12.32.0...v12.33.0 )
(2024-07-19)
### Features
* **extras:** improve ruby extra by letting user chose
([#3652 ](https://github.com/LazyVim/LazyVim/issues/3652 ))
([7839498
](7839498108
))
* **lang:** add Lean 4 support
([#4080 ](https://github.com/LazyVim/LazyVim/issues/4080 ))
([3e29fdf
](3e29fdf478
))
* **lang:** add OCaml
([#4079 ](https://github.com/LazyVim/LazyVim/issues/4079 ))
([a219e10
](a219e105b0
))
### Bug Fixes
* **ui:** trouble lualine component
([f9fdb35
](f9fdb356f2
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-19 11:50:05 +02:00
Folke Lemaitre
f9fdb356f2
fix(ui): trouble lualine component
2024-07-18 15:45:53 +02:00
github-actions[bot]
0daa957b3c
chore(main): release 12.32.0 ( #4086 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.32.0](https://github.com/LazyVim/LazyVim/compare/v12.31.0...v12.32.0 )
(2024-07-18)
### Features
* **edgy:** added support for grug-far.nvim
([b1a4740
](b1a47405b9
))
* **terminal:** clear search highlight when opening a terminal
([#4090 ](https://github.com/LazyVim/LazyVim/issues/4090 ))
([b5290fd
](b5290fd929
))
* **toggle:** move toggle notifs to toggle function
([c1b76ee
](c1b76ee235
))
### Bug Fixes
* **autcmds:** desc for close_with_q
([d6561fd
](d6561fd27c
))
* **ui:** another typo
([b8bdebe
](b8bdebe5be
))
* **ui:** typo
([4ac249b
](4ac249beaa
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-18 10:48:31 +02:00
Folke Lemaitre
d6561fd27c
fix(autcmds): desc for close_with_q
2024-07-18 00:41:54 +02:00
github-actions[bot]
d263cf5dd1
chore(main): release 12.31.0 ( #4061 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.31.0](https://github.com/LazyVim/LazyVim/compare/v12.30.0...v12.31.0 )
(2024-07-17)
### Features
* **keymaps:** proxy leader-w to ctrl-w
([bab5440
](bab54406dc
))
* **R:** added new which-key group for new install feature
([#4078 ](https://github.com/LazyVim/LazyVim/issues/4078 ))
([5339aca
](5339acacec
))
* **toggle:** make toggles callable. Fixes
[#4081 ](https://github.com/LazyVim/LazyVim/issues/4081 )
([150523b
](150523b77b
))
* **treesitter-context:** which-key toggle
([#4059 ](https://github.com/LazyVim/LazyVim/issues/4059 ))
([ab01350
](ab0135093b
))
* **which-key:** dynamic buffer mappings under leader-b
([8d9f2ad
](8d9f2ad97e
))
* **which-key:** dynamic window mappings under leader-w
([66bba78
](66bba787b8
))
* **which-key:** leader-w-space starts hydra mode for window mappings
([865bf15
](865bf15f1c
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-17 12:48:40 +02:00
Folke Lemaitre
bab54406dc
feat(keymaps): proxy leader-w to ctrl-w
2024-07-17 12:40:56 +02:00
github-actions[bot]
9eefc6a3aa
chore(main): release 12.30.0 ( #4036 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.30.0](https://github.com/LazyVim/LazyVim/compare/v12.29.2...v12.30.0 )
(2024-07-15)
### Features
* **keymaps:** dynamic which-key icons/descriptions for toggles
([#4050 ](https://github.com/LazyVim/LazyVim/issues/4050 ))
([78cf032
](78cf0320bf
))
* **util.mini:** follow the user's mappings instead of hardcoded values
([#4043 ](https://github.com/LazyVim/LazyVim/issues/4043 ))
([8506cb5
](8506cb5a98
))
### Bug Fixes
* **lsp:** lsp keymaps. Fixes
[#4051 ](https://github.com/LazyVim/LazyVim/issues/4051 )
([706ec4b
](706ec4b6b6
))
* **yanky:** enable yank history in visual mode
([#4048 ](https://github.com/LazyVim/LazyVim/issues/4048 ))
([6911327
](6911327a5e
))
### Performance Improvements
* **luasnip:** luasnip wasn't lazyloaded
([#4032 ](https://github.com/LazyVim/LazyVim/issues/4032 ))
([e80ed32
](e80ed322a7
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-15 15:49:29 +02:00
Folke Lemaitre
78cf0320bf
feat(keymaps): dynamic which-key icons/descriptions for toggles ( #4050 )
...
## Description
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
- [ ] Closes #4025
## Screenshots

## Checklist
- [ ] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-07-15 15:47:44 +02:00
github-actions[bot]
b20be638b3
chore(main): release 12.29.2 ( #4035 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.29.2](https://github.com/LazyVim/LazyVim/compare/v12.29.1...v12.29.2 )
(2024-07-14)
### Bug Fixes
* **telescope:** better find_command. Fixes
[#4031 ](https://github.com/LazyVim/LazyVim/issues/4031 )
([d39cdb0
](d39cdb0596
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-14 18:08:14 +02:00
github-actions[bot]
45af7e1fed
chore(main): release 12.29.1 ( #4026 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.29.1](https://github.com/LazyVim/LazyVim/compare/v12.29.0...v12.29.1 )
(2024-07-14)
### Bug Fixes
* **omnisharp:** don't detach coreclr debug adapter
([#4023 ](https://github.com/LazyVim/LazyVim/issues/4023 ))
([b3e746b
](b3e746b637
))
* **pick:** get rid of "auto" picker and set better defaults for
telescope find_files
([#4024 ](https://github.com/LazyVim/LazyVim/issues/4024 ))
([337e9dd
](337e9ddc00
))
* **tailwind:** additional tailwind completion settings for phoenix
projects ([#3961 ](https://github.com/LazyVim/LazyVim/issues/3961 ))
([9bce054
](9bce054faf
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-14 07:54:09 +02:00
github-actions[bot]
065d72320d
chore(main): release 12.29.0 ( #4015 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.29.0](https://github.com/LazyVim/LazyVim/compare/v12.28.0...v12.29.0 )
(2024-07-14)
### Features
* **java:** new java mappings format for which-key v3
([#4013 ](https://github.com/LazyVim/LazyVim/issues/4013 ))
([28a7f81
](28a7f8126c
))
* shorter keymap descriptions for mini.ai / yanky
([75ff149
](75ff1496bd
))
### Bug Fixes
* **flit:** use which-key preset keymap descriptions
([#4000 ](https://github.com/LazyVim/LazyVim/issues/4000 ))
([ca37162
](ca37162cb7
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-14 07:50:40 +02:00
github-actions[bot]
9391ff9fa3
chore(main): release 12.28.0 ( #3952 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.28.0](https://github.com/LazyVim/LazyVim/compare/v12.27.0...v12.28.0 )
(2024-07-12)
### Features
* new mappings format for which-key v3. Forgot to push :)
([702471e
](702471e454
))
### Bug Fixes
* **autocmds:** fixed pattern for autocommand to autoenable wrap and
spell in text files
([#3975 ](https://github.com/LazyVim/LazyVim/issues/3975 ))
([927031a
](927031a2de
))
* **java:** fix `config_overrides` for tests
([#3968 ](https://github.com/LazyVim/LazyVim/issues/3968 ))
([b481b64
](b481b644dd
))
* **outline:** use new object for `symbols.filter`
([#4006 ](https://github.com/LazyVim/LazyVim/issues/4006 ))
([db234ef
](db234ef9cb
))
* **php:** `php_cs_fixer` is the correct name
([#3991 ](https://github.com/LazyVim/LazyVim/issues/3991 ))
([8bfd9a5
](8bfd9a50a7
))
* **vscode:** allow overriding default vscode keymaps. Fixes
[#3950 ](https://github.com/LazyVim/LazyVim/issues/3950 )
([6765052
](67650528e4
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-12 22:56:08 +02:00
Mike Pilmer
927031a2de
fix(autocmds): fixed pattern for autocommand to autoenable wrap and spell in text files ( #3975 )
...
## Description
Autocommand group lazyvim_wrap_spell was not triggering for all of the
specified file types.
The autocommand will now trigger for types "text", "plaintex", "typst",
"gitcommit", "markdown" as intended.
## Related Issue(s)
- Fixes #3973
## Checklist
- [X] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md )
guidelines.
2024-07-10 09:11:26 +02:00
Folke Lemaitre
67650528e4
fix(vscode): allow overriding default vscode keymaps. Fixes #3950
2024-07-08 07:52:18 +02:00
github-actions[bot]
bf9887adac
chore(main): release 12.27.0 ( #3949 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.27.0](https://github.com/LazyVim/LazyVim/compare/v12.26.2...v12.27.0 )
(2024-07-07)
### Features
* **icons:** provide language specific icons in extras
([#3931 ](https://github.com/LazyVim/LazyVim/issues/3931 ))
([aa418a2
](aa418a2147
))
* **java:** allow overriding test config
([#3891 ](https://github.com/LazyVim/LazyVim/issues/3891 ))
([8b2eacb
](8b2eacb6ac
))
### Bug Fixes
* **fzf-lua:** move register_select to lazy init
([33e1da5
](33e1da585d
))
* **lazygit:** improve git browse
([#3941 ](https://github.com/LazyVim/LazyVim/issues/3941 ))
([28805d1
](28805d1a4c
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-07 21:28:01 +02:00
github-actions[bot]
6202dd1644
chore(main): release 12.26.2 ( #3946 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.26.2](https://github.com/LazyVim/LazyVim/compare/v12.26.1...v12.26.2 )
(2024-07-07)
### Bug Fixes
* **lualine:** check that trouble is installed
([d108169
](d108169e95
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-07 09:24:59 +02:00
github-actions[bot]
e9857446ce
chore(main): release 12.26.1 ( #3930 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.26.1](https://github.com/LazyVim/LazyVim/compare/v12.26.0...v12.26.1 )
(2024-07-06)
### Bug Fixes
* **lualine:** use the new ministarter file type to disable in
mini.starter ([#3929 ](https://github.com/LazyVim/LazyVim/issues/3929 ))
([330d2e4
](330d2e470b
))
* **mini.starter:** lazyvim startuptime in mini.starter
([#3935 ](https://github.com/LazyVim/LazyVim/issues/3935 ))
([5f952bb
](5f952bb9d6
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-06 12:12:32 +02:00
github-actions[bot]
0471ca14ca
chore(main): release 12.26.0 ( #3920 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.26.0](https://github.com/LazyVim/LazyVim/compare/v12.25.0...v12.26.0 )
(2024-07-05)
### Features
* **dial:** yaml support
([f64bbd2
](f64bbd29fb
))
* **util:** rest-client
([#3915 ](https://github.com/LazyVim/LazyVim/issues/3915 ))
([76b41cd
](76b41cdec4
))
* **vue:** enabled hybrid mode to avoid 2 typescript lsp running at same
time ([#3908 ](https://github.com/LazyVim/LazyVim/issues/3908 ))
([4b0f720
](4b0f720457
))
### Bug Fixes
* **dial:** move date related augends to default group
([#3927 ](https://github.com/LazyVim/LazyVim/issues/3927 ))
([4192d95
](4192d9578d
))
* **outline:** use the correct symbols and filter config format
([#3924 ](https://github.com/LazyVim/LazyVim/issues/3924 ))
([502dac1
](502dac1d9a
))
* **project:** properly close window after changing directory
([#3919 ](https://github.com/LazyVim/LazyVim/issues/3919 ))
([51e99df
](51e99dfba1
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-05 16:13:20 +02:00
github-actions[bot]
d35a3914bf
chore(main): release 12.25.0 ( #3905 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.25.0](https://github.com/LazyVim/LazyVim/compare/v12.24.0...v12.25.0 )
(2024-07-04)
### Features
* **erlang:** add Erlang language
([#3911 ](https://github.com/LazyVim/LazyVim/issues/3911 ))
([9c7d3dc
](9c7d3dc75e
))
* **fzf-lua:** preview keymaps for git
([#3904 ](https://github.com/LazyVim/LazyVim/issues/3904 ))
([d5f3d39
](d5f3d395f4
))
* **ui:** use `mini.icons` instead of `nvim-wev-devicons`
([#3899 ](https://github.com/LazyVim/LazyVim/issues/3899 ))
([045faec
](045faec035
))
### Bug Fixes
* **fzf:** make sure `vim.ui.select` works when fzf is not loaded yet
([9acadc7
](9acadc7ec2
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-04 21:02:19 +02:00
github-actions[bot]
8ddc6f9e16
chore(main): release 12.24.0 ( #3900 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.24.0](https://github.com/LazyVim/LazyVim/compare/v12.23.0...v12.24.0 )
(2024-07-03)
### Features
* **options:** jumpoptions=view
([fe3d0da
](fe3d0da508
))
### Bug Fixes
* **dials:** dials.nvim stopped working after making changes to plugin
files
([455557c
](455557c1f6
))
### Performance Improvements
* **fzf:** lazy-load fzf-lua
([b9a8a4a
](b9a8a4ad7f
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-03 21:12:38 +02:00
Folke Lemaitre
fe3d0da508
feat(options): jumpoptions=view
2024-07-03 17:12:26 +02:00
github-actions[bot]
1f603f9074
chore(main): release 12.23.0 ( #3872 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.23.0](https://github.com/LazyVim/LazyVim/compare/v12.22.1...v12.23.0 )
(2024-07-03)
### Features
* **cmp:** attempt for dynamic width and trimming between fields
([#3873 ](https://github.com/LazyVim/LazyVim/issues/3873 ))
([78cf6ee
](78cf6ee024
))
### Bug Fixes
* **chezmoi:** missing support for fzf file picker
([#3888 ](https://github.com/LazyVim/LazyVim/issues/3888 ))
([2114a66
](2114a6610f
))
* **neo-tree:** remove `branch`, since it obstructs updating to latest
version ([#3871 ](https://github.com/LazyVim/LazyVim/issues/3871 ))
([d23731c
](d23731c50d
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-03 07:55:45 +02:00
github-actions[bot]
00f53315b5
chore(main): release 12.22.1 ( #3866 )
...
🤖 I have created a release *beep* *boop*
---
##
[12.22.1](https://github.com/LazyVim/LazyVim/compare/v12.22.0...v12.22.1 )
(2024-06-30)
### Performance Improvements
* **markdown:** only run markdownlint-cli2 formatter when there are
markdownlint diagnostics for the buffer
([8a6875a
](8a6875ab3b
))
### Reverts
* feat(neo-tree): more sane defaults for gitignore and hidden files
([2bfcd05
](2bfcd05c62
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-30 17:32:25 +02:00