| Name | Shortcut |
|---|---|
| Toggle show formulas | Ctrl + ö |
| Show keyboard shortcuts (somewhat useless on a different layout) | Ctrl + # |
| Insert current date | Ctrl + ü |
| Insert current time | Ctrl + Shift + ü |
| Insert current date and time | Ctrl + Alt + Shift + ü |
| Insert rows/columns or Open insert menu | Ctrl + Alt + + |
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
| <?php | |
| namespace Database\Seeders; | |
| use App\Models\ItemProfile; | |
| class Foo | |
| { | |
| public function run(): void | |
| { |
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
| { | |
| "owner": "phpstan", | |
| "source": "phpstan", | |
| "severity": "error", | |
| "fileLocation": ["relative", "${workspaceFolder}"], | |
| "pattern": [ | |
| { | |
| "regexp": "^\\s*Line\\s*(.*)$", | |
| "file": 1, | |
| }, |
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
| /** | |
| * Types for character / expression rendering by https://github.com/FunctionDJ | |
| * | |
| * Credit goes to https://github.com/ac2pic and https://github.com/AndrielChaoti | |
| * for initial types at https://github.com/CCDirectLink/crosscode-re-docs/blob/master/gui/faces.md | |
| */ | |
| type Mapped<T> = { | |
| [key: string]: T | |
| } |
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
| /** | |
| * Types for character / expression rendering by https://github.com/FunctionDJ | |
| * | |
| * Credit goes to https://github.com/ac2pic and https://github.com/AndrielChaoti | |
| * for initial types at https://github.com/CCDirectLink/crosscode-re-docs/blob/master/gui/faces.md | |
| */ | |
| type Mapped<T> = { | |
| [key: string]: T | |
| } |
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
| type Mapped<T> = { | |
| [key: string]: T | |
| } | |
| export interface CharacterData { | |
| face?: Face | string | FaceMap | |
| } | |
| export interface Face { | |
| width: number |
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
| import { ReactElement } from "react"; | |
| import { Alert } from "react-bootstrap"; | |
| import { ChangeVarNumber_T } from "../../interfaces/actions"; | |
| interface Props { | |
| data: ChangeVarNumber_T | |
| } | |
| export const ChangeVarNumber = ({ data }: Props) => { | |
| const value = ( |
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
| type GameAction = | |
| "moveDirX" | |
| | "aiming" | |
| | "charge" | |
| | "menuBack" | |
| | "menuHotkeyHelp2" | |
| | "questCircleLeft" | |
| | "dashing" | |
| | "guarding" |
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
| type GameAction = | |
| "moveDirX" | |
| | "aiming" | |
| | "charge" | |
| | "menuBack" | |
| | "menuHotkeyHelp2" | |
| | "questCircleLeft" | |
| | "dashing" | |
| | "guarding" |
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
| interface WaitEvent { | |
| ignoreSlowDown: boolean | |
| time: number | |
| type: "WAIT" | |
| } | |
| interface ShowSideMsgEvent { | |
| message: { | |
| en_US: string | |
| de_DE: string |