1. 程式人生 > >ONI無法啟動: Uh oh! Unable to launch Neovim...

ONI無法啟動: Uh oh! Unable to launch Neovim...

scheme enabled auto 配置 code binding str comment 無法啟動

技術分享圖片

問題描述

在終端中是可以打開nvim的,ONI無法正確找到位置

解決方法

修改配置文件,指定nvim的路徑

  1. 終端中輸入which nvim定位所在位置,這裏返回的結果是/usr/local/bin/nvim
  2. ~/.config/oni/config.js中添加以下內容"debug.neovimPath": "/usr/local/Cellar/neovim/0.3.1/bin/nvim"
    如果沒有這個文件,也可復制以下內容保存為文件。
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.activate = function (oni) {
        console.log("config activated");
        // Input
        //
        // Add input bindings here:
        //
        oni.input.bind("<c-enter>", function () { return console.log("Control+Enter was pressed"); });
        //
        // Or remove the default bindings here by uncommenting the below line:
        //
        // oni.input.unbind("<c-p>")
};
exports.deactivate = function (oni) {
        console.log("config deactivated");
};
exports.configuration = {
        //add custom config here, such as
        "ui.colorscheme": "nord",
        //"oni.useDefaultConfig": true,
        //"oni.bookmarks": ["~/Documents"],
        //"oni.loadInitVim": false,
        //"editor.fontSize": "12px",
        //"editor.fontFamily": "Monaco",
        // UI customizations
        "ui.animations.enabled": true,
        "ui.fontSmoothing": "auto",
        // https://github.com/onivim/oni/issues/2396#issuecomment-426767185
        "debug.neovimPath": "/usr/local/Cellar/neovim/0.3.1/bin/nvim",
};

重啟ONI即可

ONI無法啟動: Uh oh! Unable to launch Neovim...