Sublime Forum

Open in Editor: Alacritty + Neovim

#1

I’m trying to setup “Open in Editor” to open neovim in a new alacritty terminal instance. I’ve tried the following configuration:

  • Editor Path: alacritty
  • Editor Argument Format: -e 'nvim +${line} ${file}'

It appears to be having trouble with the quotes. If I change the arguments to -e nvim it opens neovim in a new terminal instance.

0 Likes

#2

The solution was to completely omit the quotes: -e nvim +${line} ${file}

0 Likes