You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/ipad.md
+25
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
# iPad
4
4
5
5
-[Known Issues](#known-issues)
6
+
-[How to install PWA](#how-to-install-pwa)
6
7
-[How to access code-server with a self signed certificate on iPad?](#how-to-access-code-server-with-a-self-signed-certificate-on-ipad)
7
8
-[Servediter iPad App](#servediter-ipad-app)
8
9
-[Raspberry Pi USB-C Network](#raspberry-pi-usb-c-network)
@@ -28,6 +29,30 @@
28
29
- Alternative: Just use touch scrolling
29
30
- See [issues tagged with the iPad label](https://github.com/cdr/code-server/issues?q=is%3Aopen+is%3Aissue+label%3AiPad) for more.
30
31
32
+
## How to install PWA
33
+
34
+
To install the code-server PWA, follow these steps:
35
+
36
+
1. Open code-server in Safari
37
+
2. Click the Share icon
38
+
3. Click "Add to Home Screen"
39
+
40
+
Now when you open code-server from the home screen, you will be using the PWA.
41
+
The advantages of this are more screen real estate and access to top-level keyboard shortcuts because it's running like an app. An example shortcut is the `cmd+w` to close an active file in the workbench. You can add this to your `keybindings.json` by doing the following:
42
+
43
+
1. Open up code-serer
44
+
2.`Command Palette > Open Keyboard Shortcuts (JSON)`
45
+
3. Add the following to your `keybindings.json`
46
+
47
+
```json
48
+
{
49
+
"key": "cmd+w",
50
+
"command": "workbench.action.closeActiveEditor"
51
+
}
52
+
```
53
+
54
+
Test out command by hitting `cmd+w` to close an active file
55
+
31
56
## How to access code-server with a self signed certificate on iPad?
32
57
33
58
Accessing a self signed certificate on iPad isn't as easy as accepting through all
0 commit comments