| Operation | Shortcut |
|---|---|
| Step over next function call | F8 |
| Step into next function call | F7 |
| Select function to step into | ⇧ F7 |
| Step out of current function | ⇧ F8 |
| View all breakpoints | ⌘ ⇧ F8 |
| Operation | Shortcut |
|---|---|
| Show in Finder | ⌘ ⇧ J |
Scroll to bottom Custom |
⌃⇧⬇️ |
Scroll to top Custom |
⌃⇧⬆️ |
| Operation | Shortcut |
|---|---|
| View table structure | ⌘ F12 |
| Retrieve table data | ⌘ F |
| Search everywhere | double ⇧ |
| Recent files | ⌘ E |
| Recent locations | ⌘ ⇧ E |
| Open Console | ⌘ ⇧ F10 |
| Operation | Shortcut |
|---|---|
| Create (table, field, record, etc.) | ⌘ N |
| Submit changes | ⌘ ↩ |
| Maximize editor | ⇧ ↩ |
| Enter in cell (same as above) | ⇧ ↩ |
| Go to line | ⌘ L |
| Compare cell content | ⌘ ⇧ D |
| Operation | Shortcut |
|---|---|
Preview file supports search |
⌥ ␣ |
| Operation | Shortcut |
|---|---|
| Split pane vertically | ⌘ D |
| Split pane horizontally | ⌘ ⇧ D |
| Previous pane | ⌘ [ |
| Next pane | ⌘ ] |
| Enter/Exit full screen | ⌘ Enter |
| Search command history | ⌃ R |
| New tab | ⌘ T |
| Increase font size | ⌘ + |
| Operation | Shortcut |
|---|---|
| Open current web page in browser | ⌘ ⇧ B |
| Operation | Shortcut |
|---|---|
| Show Password | ⌥ |
| Search | ⌘ F |
| Copy Password | ⇧ ⌘ C |
| Toggle safe field visibility | ⌘ R |
| Operation | Shortcut |
|---|---|
| Send Request | ⌘ ⏎ |
| Duplicate Request | ⌘ D |
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
| // 布局方向 | |
| const dir = 'LR'; // LR RL TB BT | |
| // 自动布局 | |
| export function layout(graph: Graph) { | |
| const nodes = graph.getNodes(); | |
| const edges = graph.getEdges(); | |
| const g = new dagre.graphlib.Graph(); | |
| g.setGraph({ rankdir: dir, nodesep: 16, ranksep: 16 }); |