neeshy
neeshy
You can also replace the offending line with this: ```local lto_overlay_dir="$("$(command -pv portageq)" get_repo_path ${PORTAGE_CONFIGROOT} lto-overlay)"``` Which is a bit more generic than using the absolute path
I can't reproduce this. XML files open in an editor for me. The output that you saw suggests that a web browser is being used to open the file, so...
Yes, I was using firefox. I switched to chromium and still can't reproduce what you're seeing. Check your lfrc. It sounds like you've set the opener to be invoked with...
Thank you for investigating, and sorry for the late reply. On my end, the moving multiple tabs bug still occurs even after setting fission.bfcacheInParent to false. Likewise with fission.autostart. I'm...
My two cents: mod having higher precedence than units feels inconsistent with the usage of other operators. Consider: ``` 16 mod 6 kg ``` Without knowing anything else about fend,...
Just found this: https://github.com/printfn/fend/issues/247#issuecomment-1868373153 I guess this would be more involved.
Removing the following autocmds: https://github.com/nvim-lualine/lualine.nvim/blob/b431d228b7bbcdaea818bdc3e25b8cdbe861f056/lua/lualine.lua#L267-L268 fixes the issue for me. ```lua vim.cmd.autocmd { 'lualine ColorScheme', bang = true } vim.cmd.autocmd { 'lualine OptionSet background', bang = true } ```
@shadmansaleh #1013 Doesn't entirely work, since it sets `showtabline` to 1 when `always_show_tabline` is `false` no matter the state of tabline segments. Basically, if you have a tabline configuration with...
A workaround is to set `showtabline` within a relevant `cond` function: ```lua require('lualine').setup { tabline = { lualine_a = { { 'buffers', cond = function() local cond = #vim.fn.getbufinfo {...
WTF, https://github.com/nvim-lualine/lualine.nvim/issues/1294#issuecomment-2487409554 triggers this bug: #1141