From 5254a6bff6b73539eef044f86ae284fefabd0108 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 1 Jun 2024 14:13:53 -0400 Subject: [PATCH] [Doc] Add general tips for working with VS Code Co-authored-by: Bryan W. Weber --- doc/sphinx/develop/index.md | 6 +- doc/sphinx/develop/running-tests.md | 2 + doc/sphinx/develop/vscode-tips.md | 108 ++++++++++++++++++++++++++++ 3 files changed, 112 insertions(+), 4 deletions(-) create mode 100644 doc/sphinx/develop/vscode-tips.md diff --git a/doc/sphinx/develop/index.md b/doc/sphinx/develop/index.md index 1e5f8a14f..75daf9630 100644 --- a/doc/sphinx/develop/index.md +++ b/doc/sphinx/develop/index.md @@ -47,12 +47,9 @@ reactor-integration ## Adding New Features to Cantera -```{caution} -This section is a work in progress. -``` - - [](CONTRIBUTING) - [](style-guidelines) +- [](vscode-tips) - [](writing-tests) - [](running-tests) - [](writing-examples) @@ -64,6 +61,7 @@ This section is a work in progress. CONTRIBUTING style-guidelines +vscode-tips writing-tests running-tests writing-examples diff --git a/doc/sphinx/develop/running-tests.md b/doc/sphinx/develop/running-tests.md index d17393ae2..8fab48150 100644 --- a/doc/sphinx/develop/running-tests.md +++ b/doc/sphinx/develop/running-tests.md @@ -113,6 +113,7 @@ Remember to run `scons build` after any code change before running tests directl `pytest`. ``` +(sec-pytest-vscode)= ## Running Python Tests Using VS Code To allow running the Python unit tests through VS Code, add the following options @@ -131,6 +132,7 @@ to `.vscode/settings.json`: Once you have done this, you should be able to run and debug individual Python tests directly from VS Code using the controls in the gutter to the left of the editor window. +(sec-gtest-vscode)= ## Debugging C++ Tests Using VS Code To allow running the C++ unit tests through the [VS Code interactive diff --git a/doc/sphinx/develop/vscode-tips.md b/doc/sphinx/develop/vscode-tips.md new file mode 100644 index 000000000..6ec7bf99b --- /dev/null +++ b/doc/sphinx/develop/vscode-tips.md @@ -0,0 +1,108 @@ +# Configuring Visual Studio Code for Cantera + +This page offers an opinionated take on setting up Visual Studio Code (VS Code or +vscode) for Cantera development. Feel free to take or leave any of these tips as you +wish. What works for you may be different. + +```{seealso} +For information on running Cantera's test suites and debugging with VS Code, +see the sections [](sec-pytest-vscode) and [](sec-gtest-vscode). +``` + +## Settings + +VS Code has two places it can store settings: + +1. A global directory specific to your operating system, called "User Configuration" in + VS Code +2. Within your local working directory, in a folder called `.vscode`, called "Workspace + Configuration" in VS Code + +In both places, settings are stored in a JSON file so you can edit them manually if you +want, or you can use the point-and-click interface. You can open the settings window by +typing `CTRL+,` (Windows, Linux) or `COMMAND+,` (macOS). You'll see the User and +Workspace settings tabs right below the search box. You can open the JSON settings file +by clicking the "Open Settings (JSON)" button in the top right of the editor pane; the +icon looks like a sheet of paper with an arrow wrapping around it. + +Settings defined in your local configuration always override the global configuration. +Many commonly used settings are related to an Extension, so we'll describe those below. +The settings we recommend changing that come by default with VS Code are: + +```json +{ + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "editor.renderWhitespace": "boundary", + "files.trimTrailingWhitespace": true, + "editor.formatOnSave": true, + "editor.rulers": [ + 88 + ] +} +``` + +You can change these in the User Configuration so they apply to all of your projects. +These five settings make sure that: + +1. A file always ends with a newline character +2. A file always ends with a single newline character +3. Whitespace (spaces, tabs) are rendered when they are not between words, for instance + at the beginning or ending of a line +4. Trailing whitespace is removed from each line +5. This automatic formatting is applied every time you save the file +6. Show the location of the 88th column, which is the preferred maximum line length in + Cantera's source code. + +VS Code also allows you to specify language-specific settings by putting the name of the +language as the mapping key inside square brackets. When VS Code detects a particular +language is used for a file, it applies the settings in that block. The following +settings may be useful for YAML files: + +```json +{ + "[yaml]": { + "editor.tabSize": 2, + } +} +``` + +## Extensions + +The following extensions may be useful for Cantera work: + +- C/C++ (Microsoft) +- Cython (Thomas Walther) +- GitHub Pull Requests (GitHub) +- GitLens (GitKraken) +- Matlab (Xavier Hahn) +- Python (Microsoft) +- Visual Studio IntelliCode (Microsoft) + +We'll talk a little more about some of them below. + +### GitHub Pull Requests + +This extension makes it much easier to do code reviews on big pull requests from within +VS Code, rather than trying to work in the browser. + +### GitLens + +GitLens allows you to see the commit history for a line in a file from within VS Code. Super useful when you want to start yelling at the terrible developer who last touched this line, because you don't have to go to your browser to find out it was yourself. + +### Python + +The Python extension is really excellent because it includes the ability to run linters and formatters on Python code as you write it. Unfortunately, it's not super helpful for Cantera development because we write most code in Cython. This is most useful for working on examples. + +## Other General Tips/Keyboard Shortcuts + +- You can use `F12` (you might need to press `Fn` for your keyboard to actually send + `F12`) to jump to the definition of the function or class under your cursor. Really, + really useful in C++ land where everything seems like it's a virtual function defined + on the parent class. +- You can press `CTRL+k` (Windows, Linux) or `COMMAND+k` (macOS) and then `s` to save a + file without auto-formatting it, if you have format-on-save enabled by default. +- You can press `CTRL+G` (macOS, yes that means Control not Command, not sure about the + other OS) to jump to a specific line in the open file. +- `CTRL+SHIFT+T` (Windows, Linux) and `COMMAND+SHIFT+T` (macOS) reopens a tab you just + closed. This works in Chrome and Firefox too. \ No newline at end of file