general

How to customize flags for launching Node from Vim configuration?

I submitted a PR to add the ability to add options on the launch of node from the vim configuration. My specific use-case is to use openssl CA with the option --use-openssl-ca. How can I customize flags for launching Node from Vim configuration?

Hédy GIRAUDEAU

Asked on Feb 25, 2024

To customize flags for launching Node from Vim configuration, you can modify the configuration settings in Vim. Here's an example of how you can add the --use-openssl-ca flag:

let g:node_options = '--use-openssl-ca'
Feb 26, 2024Edited by