1

I want to try out the actualvim plugin for sublime, but I can't figure out how to add the path to neovim. And the page instruction never explained how to.

5
  • What did you try, and what didn't work? Give the exact code you tried that didn't work. The "Usage" section of the readme has instructions: github.com/lunixbochs/ActualVim#usage Commented Jun 27, 2018 at 22:10
  • @Justin M. Keyes Haven't added any code since I don't know much of sublime Commented Jun 27, 2018 at 22:11
  • Did you try the answer I posted below? Commented Jul 2, 2018 at 21:33
  • @Justin M. Keyes Yeah I did, but I could not manage to make it work. I get the error: ImportError: No module named 'ActualVim' Commented Jul 3, 2018 at 16:02
  • That's a different problem, and is addressed on the issue tracker: github.com/lunixbochs/ActualVim/… (It also depends on the full error log, which you need to post here or on the ActualVim issue tracker) Commented Jul 3, 2018 at 23:15

1 Answer 1

2

The readme does not mention the setting name, but the code reveals a neovim_path setting.

In Sublime's menu, go to Preferences -> Package Settings -> ActualVim Settings and set the neovim_path key to the full nvim path:

"neovim_path": "/path/to/nvim"

If you're on Windows, use / slashes (not \), or you will need to escape the slashes, e.g.:

"neovim_path": "C:\\path\\to\\nvim.exe"
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.