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.
-
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#usageJustin M. Keyes– Justin M. Keyes2018-06-27 22:10:15 +00:00Commented Jun 27, 2018 at 22:10
-
@Justin M. Keyes Haven't added any code since I don't know much of sublimeThe Windmill King– The Windmill King2018-06-27 22:11:16 +00:00Commented Jun 27, 2018 at 22:11
-
Did you try the answer I posted below?Justin M. Keyes– Justin M. Keyes2018-07-02 21:33:58 +00:00Commented 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'The Windmill King– The Windmill King2018-07-03 16:02:12 +00:00Commented 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)Justin M. Keyes– Justin M. Keyes2018-07-03 23:15:36 +00:00Commented Jul 3, 2018 at 23:15
Add a comment
|
1 Answer
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"