标签:ted obj 添加 input prope property 技术 add iss
在终端中是可以打开nvim的,ONI无法正确找到位置
修改配置文件,指定nvim的路径
which nvim
定位所在位置,这里返回的结果是/usr/local/bin/nvim
~/.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...
标签:ted obj 添加 input prope property 技术 add iss
原文地址:https://www.cnblogs.com/zhuxiaoxi/p/10090766.html