Nexss Programmer Edit


Create and Edit files

Editors are installed automatically by the Nexss Programmer.

  • atom
  • nodepad++
  • VSCodium (free vscode)

You can add more by edit file in the Nexss Programmer sources: <Nexss Programmer Source>nexss-edit\editors.js

nexss file add my.rs --edit # it will create file from the selected template and open specified editor
nexss edit my.rs # will open editor for this file.

You can specify editor for the every language separately in the Language config. At this moment the feature of changing default editors for the languages is not implemented and has to be done manually.

more here: https://github.com/nexssp/language_nodejs/blob/master/nodejs.win32.nexss.config.js

languageConfig.editors = {
  vscode: {
    extensions: ["ms-vscode.node-debug2"],
  },
};