Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
296d79cfbc | |||
240fa7631b | |||
d1eb9c89d3 | |||
c5759a451f |
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [4.19.1](https://github.com/LazyVim/LazyVim/compare/v4.19.0...v4.19.1) (2023-06-27)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **flash:** don't override `R` in normal mode ([c5759a4](https://github.com/LazyVim/LazyVim/commit/c5759a451f8a5635b5c2d19c82636c8b66676a3b))
|
||||||
|
* **mini.files:** changed some window widths ([d1eb9c8](https://github.com/LazyVim/LazyVim/commit/d1eb9c89d3d2959d6d106b0c11c12b21fb3bbf50))
|
||||||
|
|
||||||
## [4.19.0](https://github.com/LazyVim/LazyVim/compare/v4.18.0...v4.19.0) (2023-06-26)
|
## [4.19.0](https://github.com/LazyVim/LazyVim/compare/v4.18.0...v4.19.0) (2023-06-26)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*LazyVim.txt* For Neovim >= 0.8.0 Last change: 2023 June 26
|
*LazyVim.txt* For Neovim >= 0.8.0 Last change: 2023 June 27
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Table of Contents *LazyVim-table-of-contents*
|
Table of Contents *LazyVim-table-of-contents*
|
||||||
|
@ -34,7 +34,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"R",
|
"R",
|
||||||
mode = { "n", "o", "x" },
|
mode = { "o", "x" },
|
||||||
function()
|
function()
|
||||||
require("flash").treesitter_search()
|
require("flash").treesitter_search()
|
||||||
end,
|
end,
|
||||||
|
@ -3,6 +3,8 @@ return {
|
|||||||
opts = {
|
opts = {
|
||||||
windows = {
|
windows = {
|
||||||
preview = true,
|
preview = true,
|
||||||
|
width_focus = 30,
|
||||||
|
width_preview = 30,
|
||||||
},
|
},
|
||||||
options = {
|
options = {
|
||||||
-- Whether to use for editing directories
|
-- Whether to use for editing directories
|
||||||
@ -30,8 +32,12 @@ return {
|
|||||||
require("mini.files").setup(opts)
|
require("mini.files").setup(opts)
|
||||||
|
|
||||||
local show_dotfiles = true
|
local show_dotfiles = true
|
||||||
local filter_show = function(fs_entry) return true end
|
local filter_show = function(fs_entry)
|
||||||
local filter_hide = function(fs_entry) return not vim.startswith(fs_entry.name, ".") end
|
return true
|
||||||
|
end
|
||||||
|
local filter_hide = function(fs_entry)
|
||||||
|
return not vim.startswith(fs_entry.name, ".")
|
||||||
|
end
|
||||||
|
|
||||||
local toggle_dotfiles = function()
|
local toggle_dotfiles = function()
|
||||||
show_dotfiles = not show_dotfiles
|
show_dotfiles = not show_dotfiles
|
||||||
|
Reference in New Issue
Block a user