mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(lualine): fix Illegal Character issue with fzf.
This commit is contained in:
parent
d0c366e4d8
commit
74532d8532
1 changed files with 6 additions and 0 deletions
|
|
@ -80,6 +80,12 @@ return {
|
||||||
|
|
||||||
vim.o.laststatus = vim.g.lualine_laststatus
|
vim.o.laststatus = vim.g.lualine_laststatus
|
||||||
|
|
||||||
|
-- HACK: see lualine.nvim issue #1201, Illegal character from fzf could
|
||||||
|
-- cause lualine to hang. To prevent this, we disable lualine from
|
||||||
|
-- retrieving the content of the currently selected item in fzf, avoiding
|
||||||
|
-- potential invalid characters.
|
||||||
|
require("lualine.extensions.fzf").sections.lualine_y = {}
|
||||||
|
|
||||||
local opts = {
|
local opts = {
|
||||||
options = {
|
options = {
|
||||||
theme = "auto",
|
theme = "auto",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue