WORKSPACE_ROOT=$(find_workspace_root) if [ -z "$WORKSPACE_ROOT" ]; then echo"Could not find .vscode/ folder. Please create one in the root of your" echo"workspace and re-run this script."
exit 1 fi
VSCODE_FOLDER="$WORKSPACE_ROOT/.vscode"
REPO_FOLDER="$WORKSPACE_ROOT/.repo" if ! [ -d "$REPO_FOLDER" ]; then echo".repo/ folder is not in the same location as .vscode/ - this will" echo"cause problems." echo"Exiting..."
exit 1 fi
if ! command -v code > /dev/null; then echo"Could not find 'code' command." echo"" echo"1. Open VSCode" echo"2. Open the command palette (View > Command Palette)" echo"3. Type 'install' and select 'Shell Command: Install code command in PATH'" echo"4. Restart your shell"
exit 1 fi
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.