(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| import { createConnection, getConnection, Entity, getRepository } from "typeorm"; | |
| import { PrimaryGeneratedColumn, Column } from "typeorm"; | |
| @Entity() | |
| export class MyEntity { | |
| @PrimaryGeneratedColumn() | |
| id?: number; | |
| @Column() | |
| name?: string; |