some people use VS Code for other things‥

It seems that once we install nRF Connect into VS Code it completely takes over and now when I open any file in VS Code I see all of the nRF connect tabs and controls which is more than a little bit annoying

Please make it possible / easy to use VS Code without nRF Connect

Parents
  • Hi Scott

    If you do not like our VS Code design, you do not need to use our VS Code extension to develop for the nRF Connect SDK.

    The west tools have most of the functionality you will need for developing.
    Here are some examples of commands I frequently use when working with the nRF Connect SDK:

    west --help
    west build -p -b nrf52840dk_nrf52840
    west flash
    west build -t menuconfig
    ẅest flash --recover

    See West (Zephyr’s meta-tool) and Building, Flashing and Debugging for more information.

    Then you can call these commands from VS Code.
    For example by making scripts to run them and implementing your own custom tasks.

    Disclaimer:
    By not using our VS Code Extension, you will not have access to the features of our VS Code Extension.
    It might also require some time to add your custom functionality to VS Code.

    Regards,
    Sigurd Hellesvik

Reply
  • Hi Scott

    If you do not like our VS Code design, you do not need to use our VS Code extension to develop for the nRF Connect SDK.

    The west tools have most of the functionality you will need for developing.
    Here are some examples of commands I frequently use when working with the nRF Connect SDK:

    west --help
    west build -p -b nrf52840dk_nrf52840
    west flash
    west build -t menuconfig
    ẅest flash --recover

    See West (Zephyr’s meta-tool) and Building, Flashing and Debugging for more information.

    Then you can call these commands from VS Code.
    For example by making scripts to run them and implementing your own custom tasks.

    Disclaimer:
    By not using our VS Code Extension, you will not have access to the features of our VS Code Extension.
    It might also require some time to add your custom functionality to VS Code.

    Regards,
    Sigurd Hellesvik

Children
Related