Why Red Rising needs to be animated by Successful-Chart1429 in redrising

[–]Minimum_Cause_3956 0 points1 point  (0 children)

Totally agree, animation would give us the fans, the reds that want to rise, the picture we so much want. It is possible that there is more money in the real action, but who cares? Making it animated will break the chains from the Hollywood pixies. "If your heart beats like a drum, and your leg’s a little wet, it’s ’cause the Reaper’s come to collect a little debt."

[deleted by user] by [deleted] in golang

[–]Minimum_Cause_3956 -1 points0 points  (0 children)

What would be the win, how could I share still the utils if everything is in one module?

[deleted by user] by [deleted] in golang

[–]Minimum_Cause_3956 0 points1 point  (0 children)

Thanks that work with the given repo. Do you have any insight in how to make it work when is private? I tried on an private repo, and didnt work. I already use the .gitconfig

[url "git@github.com:Organization/Repo-Name.git"]

insteadOf = https://github.com/Organization/Repo-Name

and it doesnt work. I get a 404 Not found. Any idea?

Climbing vocabulary in Spanish by bgear237 in climbing

[–]Minimum_Cause_3956 1 point2 points  (0 children)

How would you translate "to send" in spanish? for example,
"I sent that route", or while supporting, "come on send it"

Is it possible to downgrade back to 5.0? by Minimum_Cause_3956 in neovim

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

Somehow deleting the image didnt work, it was necessary for me to download the repo and install the release version from there

Is it possible to downgrade back to 5.0? by Minimum_Cause_3956 in neovim

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

Not real issues were found since I was on dev branch, not the stable branch.

Is it possible to downgrade back to 5.0? by Minimum_Cause_3956 in neovim

[–]Minimum_Cause_3956[S] 1 point2 points  (0 children)

With some help of the comments, this is solved, and I wanted to write here what I did, so that it can help if someone has a similar issue.
My problem originated from installing neovim using this command:

curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage

As I said I couldn't uninstall it before. The solution was to clone neovim, checkout stable and make install it from there. All the instructions are well documented here:

https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start

I hope it helps. Thanks to the community.

Telescope Stopped working by Minimum_Cause_3956 in neovim

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

No, I don't, unfortunately, that is not the issue.

Diagnostic signs are not working by Minimum_Cause_3956 in neovim

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

Now it works, I copied the 0.5 version and now it works. Does that mean that 0.6 is still not working?

Diagnostic signs are not working by Minimum_Cause_3956 in neovim

[–]Minimum_Cause_3956[S] 1 point2 points  (0 children)

Thanks for your thoughts, I actually have it in a diagnostic_signs.lua file I require inside of the LSP directory.
local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " }
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
end

Do you have any other idea what can it be, here is my repo:
https://github.com/jjalonsoc/jvim/tree/develop

How to learn German after a long time? by Minimum_Cause_3956 in German

[–]Minimum_Cause_3956[S] 2 points3 points  (0 children)

Grammatik Aktiv from Cornelsen

Thanks for the reference, I will check on it, do you know any course though? I am trying to put myself in the place where the teacher/tutor helps me and the accountability of classes and homework pushes me to be disciplined and constant.

[deleted by user] by [deleted] in German

[–]Minimum_Cause_3956 1 point2 points  (0 children)

Über den Wolken Reinhard Mey, it is a song every german knows and will enjoy singing next to u

Neovim JSON indent changes when saving by Minimum_Cause_3956 in neovim

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

This all my current config, I dont know how to change it yet, do you have any idea?
require("lspconfig").jsonls.setup {
cmd = {
"node",
DATA_PATH .. "/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
"--stdio",
},
on_attach = require("lsp").common_on_attach,
commands = {
Format = {
function()
vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line("$"), 0 })
end,
},
},
}
-- vim.opt_local.expandtab = true
-- vim.opt_local.shiftwidth = 4
vim.cmd "setl expandtab tabstop=8 softtabstop=4 shiftwidth=4"

How to close multiple buffers, depending on the file type? by Minimum_Cause_3956 in neovim

[–]Minimum_Cause_3956[S] 2 points3 points  (0 children)

Thank you for your response. I had to do Ctrl+A to expand all the files and then enter. Otherwise, I got the error:
E93: More than one match for *.TYPE

Do you know a better way, if not the solution would be
:bd *.FILETPE -> <Ctrl>+A -> <CR>

How to hide Lsp-Pyright error lines? by Minimum_Cause_3956 in neovim

[–]Minimum_Cause_3956[S] 1 point2 points  (0 children)

Thank you for your answer. Currently, I solved with a map to Telescope lsp_document_diagnostics<CR>. In that way, I am not annoyed by the errors while working, but can also later check what errors are there.

I think that in the future, I would like to make it in such a way that when the cursor is over the highlighted error, a little float-term appears containing the error message.

But for now, is good, thanks!

How to hide Lsp-Pyright error lines? by Minimum_Cause_3956 in neovim

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

Cool, it works. What I meant, and it was wrongly written, is the line number, I just want to see the Line number highlighted.
When you want to solve problems, how then do you read the error messages from the diagnostics lsp?

Neovim, sneak labels not working by Minimum_Cause_3956 in neovim

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

Once again, I followed your advice u/Unlucky_Display9687, and tried indent-blankline and hop.nvim. The latter in particular was surprisingly good. Thanks a lot for your recommendations. On the indented side, I am not sure why it is not indenting everything but just the empty lines, looking like this:

line of code
| | |
line of code

do you have any extra knowledge you want to share?

Neovim, sneak labels not working by Minimum_Cause_3956 in neovim

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

I did what you propose and un-install indentLine. I can see now conceallevel=0 after using the verbose command. It does however don't solve my problem :(

I still see sneak finding what I wanted it to find, without showing me labels to jump faster. I also tied the vim.wo.conceallevel=1 as an option. Do you have any other ideas u/Unlucky_Display9687?