withexeditorhost
v10.0.0
Published
Native messaging host for withExEditor
Readme
EN | JA
withExEditorHost
Native messaging host for the withExEditor browser extension. The browser interacts with the host via messages, and the editor is executed by this host.
Supported browsers
|Browser |Windows|Linux |Mac | |:---------------|:-----:|:-----:|:-----:| |Firefox | ✓ | ✓ | ✓ | |Waterfox Current| ✓ | ✓ | ✓ | |LibreWolf | ✓ *1| ✓ | |
*1: Shares host with Firefox.
If your browser is not listed or OS for that browser is left blank, file an issue for adding support. When filing an issue, if you know where to save the application manifest in that browser, please let me know.
Installation and Setup
Note: Node.js is required.
When setting up the host, disable the withExEditor extension installed in the browser.
Install withExEditorHost globally, then move to the installed path.
npm i -g withexeditorhost
cd path/to/npm/node_modules/withexeditorhostNote: To find the installation path, run npm root -g. Ref: npm-root
Run the setup command npm run setup.
npm run setupDuring the setup process, you will be prompted to provide the following information. Please enter the appropriate values:
- Enter editor path: Provide the full path to your preferred text editor.
- Enter command line options: Specify any command-line arguments your editor requires.
- Note: Enclose the argument in quotes if it contains spaces or backslashes. (Example:
-a -b "C:\\Program Files") - Note: You can use the
${file}placeholder in the arguments to represent the temporary file. (Example:-a ${file} \-b)
- Note: Enclose the argument in quotes if it contains spaces or backslashes. (Example:
Note: If you have enabled Mandatory Access Control (e.g., AppArmor) for your web browser, ensure that its profile allows the execution of the withexeditorhost.sh script.
If config files are created successfully, enable withExEditor again. The browser and the host get connected and the editor will be ready to use.
Options
You can specify several options when running the setup script:
-b --browser
Use this option to specify the target browser for the installation.
npm run setup -- --browser=firefox-c --config-path
By default, configuration files are saved under user's home directory.
- Windows:
C:\Users\[UserName]\AppData\Roaming\withexeditorhost\config\ - Mac:
~/Library/Application Support/withexeditorhost/config/ - Linux:
~/.config/withexeditorhost/config/
If you want to save the configuration files in a different location, use this option. Enclose the path in quotes if it contains spaces or backslashes.
npm run setup -- --config-path="C:\Users\XXX\path\to\another\location"Other options
For other options, see help
npm run setup -- --helpUpgrading
- Disable the withExEditor extension installed in your browser.
- Run the update command:
npm i -g withexeditorhost@latest - Re-enable the withExEditor extension. There is no need to run the setup script again.
