Dominik Helfenstein
Dominik Helfenstein
Yes, it asks for admin rights and wants to install in `C:/Program Files`. A user install would be in some directory below the username.
Thanks for your efforts. I can change the install folder to my user but it still requests admin elevation. It's not too important though
> I ran into the same problem. go to your /cfg/yolo.data file and make sure you have a line that says backup = backup > > (not backup = backup/)...
Hi, Sorry for not answering. Have you managed to activate SDK logging? Otherwise I can look into it.
Thanks for testing this, as I was wondering what the behaviour in this case is. How have you fixed it? I assume the solution is, in the case of Flutter,...
Actually, there is an advantage of Rust's if expression compared to the ternary operator. ```rust let foo = if bar < 10 { let x = 6; let y =...
According to this https://www.markdownguide.org/basic-syntax/#urls-and-email-addresses and this https://github.com/markedjs/marked/issues/2397 it should only be a link when wrapped with but it just doesn't work. I now use backticks so it's treated as code...
I can't reproduce this. Maybe you are already logged in? Can you try with logging out before?
I changed the mappings inside `lsp.lua`: ```lua local cmp_mappings = lsp.defaults.cmp_mappings({ [''] = cmp.mapping.select_prev_item(cmp_select), [''] = cmp.mapping.select_next_item(cmp_select), [''] = cmp.mapping.select_next_item(cmp_select), [''] = cmp.mapping.confirm({ select = true }), [''] = cmp.mapping.complete(),...
> Compare with my config , https://github.com/anon-marvin/NeoChad/blob/main/after/plugin/lsp.lua Good idea. I have copied the tab part. But it threw an error. chatGPT fixed the error: ``` local has_words_before = function() local...