Oracle released a suitecloud npm package. This is now used instead of the java program they had before. Please take a look at suitecloud.nvim.
A wrapper for the sdfcli java tool.
Based on christopherwxyz's NetSuiteSDF VSCode Extension
- Fully support the sdfcli tool
- Modify the
deploy.xml
file automatically - Streamline the process of Netsuite development
You must have the sdfcli
tool setup and configured on your $PATH
.
- Neovim version 0.7.0+
- sdfcli java tool
To install you can use your favorite package manager.
Packer
return require('packer').startup(function(use)
use 'Phandal/sfdcli-nvim'
end)
Somewhere in your init.lua
you must run the setup function:
require('sdfcli-nvim').setup({
sdfcli_cmd = "/path/to/sdfcli"
});
The default options are as follows:
local defaults = {
sdfcli_cmd = '/sdfcli/sdfcli.bat'
}