# User Guide
# Search
- Can use regular expressions
- Search conditions
example
- search in this file./example
- search in this folder!example
- skip file or folderexample
- search in thisexample, example2
- multiple conditions*
- match one or more character?
- match one character**
- match anything{**/*.html, **/*.txt }
- group conditionsexample.[0-9]
- matches example.0, example.1, etc
node_modules
- excluded by default
# Refactoring
- Code Actions (
lightbulb
) = Quickfixes & Refactoring - Issues - Highlighted with green squiggles
- Quickfix & Refactor cmd -
ctrl+.
- Refactor
- Restructure code with same output & faster runtime.
# Debugger - (launch.json
)
- Default by vscode
- chrome debugger extension for vscode
- chrome browser itself
Modes
- Launch - How to config debugger with app
- Attach - How to attach debugger with already running app
Points
- Breakpoint
- Logpoint
# Emmet
- Inbuilt & default in
html, jsx, css, scss, sass
← Get Started Language →