LanguageServer.jl icon indicating copy to clipboard operation
LanguageServer.jl copied to clipboard

Wanted bug caused crash on Nvim

Open artp96 opened this issue 1 year ago • 0 comments

I recently had my julials via Nvim LSP crash and it informed me that I have experienced a known targetted crash.

Here's my LspLog file for the most recent session. I left Nvim open overnight, using the latest NVChad. During that time I ran apt update & apt upgrade at some point.

The most recent LspLog section for that session is below. https://pastebin.com/chwYuK5L

The julia-related section of my nvim config looks like

	{"juliaeditorsupport/julia-vim"},

  {"hrsh7th/nvim-cmp",
  requires = {
    { "kdheepak/cmp-latex-symbols" },
  },
  sources = {
    {
      name = "latex_symbols",
      option = {
        strategy = 0, -- mixed
        },
      },
    },
  },

and

"Completion
let g:latex_to_unicode_auto = 1
let g:latex_to_unicode_tab = 0

let g:latex_to_unicode_cmd_mapping = ['<C-J>']

"Formatting
nnoremap <localleader>jf :<C-u>call JuliaFormatter#Format(0)<CR>
vnoremap <localleader>jf :<C-u>call JuliaFormatter#Format(1)<CR>

"JuliaFormatter - Blue Style
let g:JuliaFormatter_options = {
      \ 'style' : 'blue',
      \ }

"Slime Default
let g:slime_default_config = {"sessionname": "jl" , "windowname": "0"}
let g:slime_dont_ask_default = 1
let g:slime_cell_delimiter = "#%%"

nmap <leader>r <Plug>SlimeSendCell

in init.vim

Julia v1.11.1, LanguageServer v4.5.1, ubuntu 24.10.

artp96 avatar Oct 23 '24 11:10 artp96