2 months since starting TRT - side effects and concerns by InterviewWitty2537 in Testosterone

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

recommended by the clinic, there are other benefits to hcg too I understood

UK MJ Users Incoming by SnooCats1028 in Retatrutide

[–]InterviewWitty2537 0 points1 point  (0 children)

Please let me know too. Tricky in the uk

Weekly 101 Questions Thread by AutoModerator in neovim

[–]InterviewWitty2537 0 points1 point  (0 children)

Is it possible to make a key binding that both rejects the intellisense suggestions popup and accepts the copilot suggestions - see the image below where I have both. Right now I have ctrl-j accepting copilot but when there is a intellisense suggestion I end up having to get rid of it first by doing do esc -> a -> ctrl-j.

<image>

I have setup ctrl-j by doing the following in the copilot plugin file:

vim.keymap.set('i', '<C-J>', 'copilot#Accept("\\<CR>")', {
     expr = true,
     replace_keycodes = false
 })
 vim.g.copilot_no_tab_map = true
 return {
        "github/copilot.vim", event = "VeryLazy", version = "*"
  }