This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LSPStatus& | |
| Admin | |
| FAILED? -> FAILED | |
| SUCESS? -> SUCCESS | |
| WARNING? -> WARNING | |
| OFF? -> OFF | |
| Rendering | |
| # Check user preferences first | |
| Code Intelligence Preferences* | |
| enabled? -> Check LSP Client Exists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function render(model){ | |
| let current_state_name = model.active_states[0].name; | |
| return $("h1", | |
| {style: {color: "darkBlue"}}, | |
| `The current state is: ${current_state_name}`); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| My Awesome Sketch | |
| First State | |
| some event -> Second State | |
| Second State | |
| Third State | |
| first -> First State |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Workspace | |
| No File Opened | |
| open file -> File | |
| File | |
| Clean Draft | |
| on change -> Edited | |
| on close with changes -> Unsaved Changes Warning | |
| on save -> Clean Draft | |
| on discard -> No File Opened | |
| Edited |
OlderNewer