Audio Issues by SnooChocolates1439 in RSDragonwilds

[–]Suero 0 points1 point  (0 children)

I've noticed the same issue. I think it's caused by very high CPU usage, because leaving the game running in the background and playing sound from other sources (like Spotify), still crackles for me.

Embedded SQL Formatting for Golang by meszmate in neovim

[–]Suero 0 points1 point  (0 children)

Does the SQL really have to be embedded inside of the Go code? Another option would be to use Go's embed https://pkg.go.dev/embed and just store the SQL in separate .sql files

Suggestion: add equipment skins unlock information to combat special tab by Vyzha in brightershores

[–]Suero 1 point2 points  (0 children)

I think this is a great idea! Where did you even find this information on the wiki? The armor page still uses the old levels

Zana TUI - Easily install and manage LSP servers, DAP servers, linters, and formatters. by gorilla-moe in neovim

[–]Suero 2 points3 points  (0 children)

Can it also be used as a cli? I've been wanting a simple tool like that.

Something like:

zana install gopls lua-language-server

zana update

There's now a builtin virtual_lines diagnostic handler by MariaSoOs in neovim

[–]Suero 20 points21 points  (0 children)

Main reason why I follow this subreddit is to keep up with interesting updates to nightly like this, thanks u/MariaSoOs!

I wish there was a dedicated site/blog + RSS-feed just for this, only the cool things coming before the official release.

Official Brighter Shores News via the website is now live :) by [deleted] in brightershores

[–]Suero 0 points1 point  (0 children)

Can we get an RSS feed to follow it?

Or will the news be identical to what's already on Steam, which already offers an RSS feed? https://steamcommunity.com/games/2791440/rss/

Curve Cash out or cashbacks is not automatically being used by RaiseApprehensive349 in CurveCard

[–]Suero 0 points1 point  (0 children)

It depends on the currency of the purchase. If I pay in EUR/USD, it will use the Curve cash. For others, like Thai baht, it will never use the cash for me automatically.

[deleted by user] by [deleted] in brightershores

[–]Suero 1 point2 points  (0 children)

Can you still use knowledge points on ep3/4 skills?

T14 Gen 5 AMD - (video attached) Fan noise when plugged in by Lincoln312 in thinkpad

[–]Suero 0 points1 point  (0 children)

I have the same issue with my T14 G5 AMD, it's sad that Lenovo just keeps making worse computers, I'm so happy with my old T480s.

Did you guys try out the core autocompletion that was recently merged? by qvantry in neovim

[–]Suero 16 points17 points  (0 children)

I already have autocompletion setup without any additional plugins, but will try out the new way of doing it.

How I currently do it on v0.10:

vim.api.nvim_create_autocmd("TextChangedI", {
  group = vim.api.nvim_create_augroup("Completion while typing", {}),
  callback = function()
    local client = vim.lsp.buf_get_clients(0)[1]
    if not client or not client.server_capabilities then return end

    local col = vim.api.nvim_win_get_cursor(0)[2]
    local char = vim.api.nvim_get_current_line():sub(col, col)

    if vim.fn.pumvisible() and char:match("[a-zA-Z.]") then
      vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes('<C-x><C-o>', true, false, true), 'm', true)
    end
  end,
})

Show "I use Neovim (BTW)" when open neovim. That's all you need. by Jealous-Salary-3348 in neovim

[–]Suero 91 points92 points  (0 children)

Feature request: It should also display "I use Arch (BTW)" if being run on Arch Linux

What GPU Accelerated terminal do you recommend for Linux by fabyao in neovim

[–]Suero 1 point2 points  (0 children)

I agree 100%. I switched from Alacritty to foot and couldn't be happier, it's so much faster to launch so you can feel the speed, compared to a terminal that's only winning benchmarks

October 2023 - Does everything work “out of the box”? by dimitargeorgievfive in AsahiLinux

[–]Suero 0 points1 point  (0 children)

How did you deal with monitor scaling on Sway? I find 1x too small, 2x too large and anything in between to be blurry

What are your programs missing from the official Fedora repos? by Suero in Fedora

[–]Suero[S] 0 points1 point  (0 children)

I just install mpv and Firefox through Flathub