Oni: configuration in after folder is not recognized

Created on 11 Nov 2017  路  4Comments  路  Source: onivim/oni

A have certain configuration in the folder .config/nvim/after that is not being recognized by oni. Usually a have some extra syntax highlighting in this folder. Is there any reason why oni does not take into account this folder? How can I make use of oni taking into account this additional configuration in the folder after?

My config.js is as follows:

const activate = (oni) => {
    console.log("config activated")
    oni.input.bind("<c-enter>", () => console.log("Control+Enter was pressed"))
}

const deactivate = () => {
    console.log("config deactivated")
}

module.exports = {
    activate,
    deactivate,
   "oni.useDefaultConfig": false, // default is true
   "oni.loadInitVim": true,
    "statusbar.enabled": true, // yes by default
    "editor.fontSize": "16px",
}
bug

All 4 comments

Looks like we missed a comma when setting the runtime paths - here's what mine looked like:

image

Looks like a quick fix - created PR #935

Fixed by #935 (will be in Wednesday's 0.2.17 release).

Great, thank you so much for the fix.

FYI - 0.2.17 is out now

Was this page helpful?
0 / 5 - 0 ratings

Related issues

bfulop picture bfulop  路  3Comments

magopian picture magopian  路  3Comments

dlee picture dlee  路  3Comments

Siilwyn picture Siilwyn  路  3Comments

TalAmuyal picture TalAmuyal  路  3Comments