README.md 6.35 KB
Newer Older
1
# React Native plugin
2

3
4
This plugin adds completion for [`react-native`](https://facebook.github.io/react-native/).
It also defines a few [aliases](#aliases) for the commands more frequently used.
5

6
To enable, add `react-native` to your `plugins` array in your zshrc file:
7

8
9
10
```zsh
plugins=(... react-native)
```
11

12
13
## Aliases

14
15
16
17
18
| Alias          | React Native command                                                         |
| :------------  | :-------------------------------------------------                           |
| **rn**         | `react-native`                                                               |
| **rns**        | `react-native start`                                                         |
| **rnlink**     | `react-native link`                                                          |
19
20
21
22
| _Logging_      |                                                                              |
| **rnland**     | `react-native log-android`                                                   |
| **rnlios**     | `react-native log-ios`                                                       |
| _App Testing_  |                                                                              |
23
24
| **rnand**      | `react-native run-android`                                                   |
| **rnios**      | `react-native run-ios`                                                       |
25
| _iPhone_       |                                                                              |
26
27
28
29
30
| **rnios4s**    | `react-native run-ios --simulator "iPhone 4s"`                               |
| **rnios5**     | `react-native run-ios --simulator "iPhone 5"`                                |
| **rnios5s**    | `react-native run-ios --simulator "iPhone 5s"`                               |
| **rnios6**     | `react-native run-ios --simulator "iPhone 6"`                                |
| **rnios6s**    | `react-native run-ios --simulator "iPhone 6s"`                               |
31
32
| **rnios6p**    | `react-native run-ios --simulator "iPhone 6 Plus"`                           |
| **rnios6sp**   | `react-native run-ios --simulator "iPhone 6s Plus"`                          |
33
| **rnios7**     | `react-native run-ios --simulator "iPhone 7"`                                |
34
35
36
37
38
| **rnios7p**    | `react-native run-ios --simulator "iPhone 7 Plus"`                           |
| **rnios8**     | `react-native run-ios --simulator "iPhone 8"`                                |
| **rnios8p**    | `react-native run-ios --simulator "iPhone 8 Plus"`                           |
| **rniosse**    | `react-native run-ios --simulator "iPhone SE"`                               |
| **rniosx**     | `react-native run-ios --simulator "iPhone X"`                                |
39
40
41
| **rniosxs**    | `react-native run-ios --simulator "iPhone Xs"`                               |
| **rniosxsm**   | `react-native run-ios --simulator "iPhone Xs Max"`                           |
| **rniosxr**    | `react-native run-ios --simulator "iPhone Xʀ"`                               |
42
| **rnios11**    | `react-native run-ios --simulator "iPhone 11"`                               |
Marc Cornellà's avatar
Marc Cornellà committed
43
44
| **rnios11p**   | `react-native run-ios --simulator "iPhone 11 Pro"`                           |
| **rnios11pm**  | `react-native run-ios --simulator "iPhone 11 Pro Max"`                       |
45
| _iPad_         |                                                                              |
46
| **rnipad2**    | `react-native run-ios --simulator "iPad 2"`                                  |
47
48
| **rnipad5**    | `react-native run-ios --simulator "iPad (5th generation)"`                   |
| **rnipad6**    | `react-native run-ios --simulator "iPad (6th generation)"`                   |
49
| **rnipadr**    | `react-native run-ios --simulator "iPad Retina"`                             |
50
51
| **rnipada**    | `react-native run-ios --simulator "iPad Air"`                                |
| **rnipada2**   | `react-native run-ios --simulator "iPad Air 2"`                              |
52
53
54
55
56
57
58
59
60
| **rnipada3**   | `react-native run-ios --simulator "iPad Air (3rd generation)"`               |
| **rnipadm2**   | `react-native run-ios --simulator "iPad mini 2"`                             |
| **rnipadm3**   | `react-native run-ios --simulator "iPad mini 3"`                             |
| **rnipadm4**   | `react-native run-ios --simulator "iPad mini 4"`                             |
| **rnipadm5**   | `react-native run-ios --simulator "iPad mini (5th generation)"`              |
| **rnipadp9**   | `react-native run-ios --simulator "iPad Pro (9.7-inch)"`                     |
| **rnipadp12**  | `react-native run-ios --simulator "iPad Pro (12.9-inch)"`                    |
| **rnipadp122** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (2nd generation)"`   |
| **rnipadp10**  | `react-native run-ios --simulator "iPad Pro (10.5-inch)"`                    |
61
62
| **rnipad11**   | `react-native run-ios --simulator "iPad Pro (11-inch)"`                      |
| **rnipad123**  | `react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"`   |
63
| _Apple TV_     |                                                                              |
64
65
66
| **rnatv**      | `react-native run-ios --simulator "Apple TV"`                                |
| **rnatv4k**    | `react-native run-ios --simulator "Apple TV 4K"`                             |
| **rnatv4k1080**| `react-native run-ios --simulator "Apple TV 4K (at 1080p)"`                  |
67
68
69
70
71
72
73
74
75
76
| **rnipad123**  | `react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"`   |
| _Apple Watch_  |                                                                              |
| **rnaw38**     | `react-native run-ios --simulator "Apple Watch - 38mm"`                      |
| **rnaw42**     | `react-native run-ios --simulator "Apple Watch - 42mm"`                      |
| **rnaws238**   | `react-native run-ios --simulator "Apple Watch Series 2 - 38mm"`             |
| **rnaws242**   | `react-native run-ios --simulator "Apple Watch Series 2 - 42mm"`             |
| **rnaws338**   | `react-native run-ios --simulator "Apple Watch Series 3 - 38mm"`             |
| **rnaws342**   | `react-native run-ios --simulator "Apple Watch Series 3 - 42mm"`             |
| **rnaws440**   | `react-native run-ios --simulator "Apple Watch Series 4 - 40mm"`             |
| **rnaws444**   | `react-native run-ios --simulator "Apple Watch Series 4 - 44mm"`             |