mirror of https://git.tuxpa.in/a/code-server.git
Merge pull request #2640 from cdr/issue-1343-control-c
doc/ipad.md: add ctrl c workaround
This commit is contained in:
commit
aab973a795
25
doc/ipad.md
25
doc/ipad.md
|
@ -7,6 +7,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)
|
- [How to access code-server with a self signed certificate on iPad?](#how-to-access-code-server-with-a-self-signed-certificate-on-ipad)
|
||||||
- [Servediter iPad App](#servediter-ipad-app)
|
- [Servediter iPad App](#servediter-ipad-app)
|
||||||
- [Raspberry Pi USB-C Network](#raspberry-pi-usb-c-network)
|
- [Raspberry Pi USB-C Network](#raspberry-pi-usb-c-network)
|
||||||
|
- [Ctrl C Workaround](#ctrl-c-workaround)
|
||||||
- [Recommendations](#recommendations)
|
- [Recommendations](#recommendations)
|
||||||
- [By 2022 iPad coding more desirable on Arm Macs](#by-2022-ipad-coding-more-desirable-on-arm-macs)
|
- [By 2022 iPad coding more desirable on Arm Macs](#by-2022-ipad-coding-more-desirable-on-arm-macs)
|
||||||
|
|
||||||
|
@ -28,6 +29,9 @@
|
||||||
- Alternative: Install line-jump extension and use keyboard to nav by jumping large amount of lines
|
- Alternative: Install line-jump extension and use keyboard to nav by jumping large amount of lines
|
||||||
- Alternative: Just use touch scrolling
|
- Alternative: Just use touch scrolling
|
||||||
- See [issues tagged with the iPad label](https://github.com/cdr/code-server/issues?q=is%3Aopen+is%3Aissue+label%3AiPad) for more.
|
- See [issues tagged with the iPad label](https://github.com/cdr/code-server/issues?q=is%3Aopen+is%3Aissue+label%3AiPad) for more.
|
||||||
|
- `ctrl+c` does not stop a long-running process in the browser
|
||||||
|
- Tracking upstream issue here: [#114009](https://github.com/microsoft/vscode/issues/114009)
|
||||||
|
- See [workaround](#ctrl-c-workaround)
|
||||||
|
|
||||||
## How to install PWA
|
## How to install PWA
|
||||||
|
|
||||||
|
@ -117,6 +121,27 @@ Resources worthy of review:
|
||||||
>
|
>
|
||||||
> -- <cite>[Acker Apple](http://github.com/ackerapple/)</cite>
|
> -- <cite>[Acker Apple](http://github.com/ackerapple/)</cite>
|
||||||
|
|
||||||
|
## Ctrl C Workaround
|
||||||
|
|
||||||
|
There is currently an issue with `ctrl+c` not stopping a running process in the integrated terminal. We have filed an issue upstream and are tracking [here](https://github.com/microsoft/vscode/issues/114009). As a temporary workaround, it works if you manually define the shortcut like so:
|
||||||
|
|
||||||
|
1. Open Command Palette
|
||||||
|
2. Look for "Preferences: Open Keyboard Shortcuts (JSON)"
|
||||||
|
3. Add this:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"key": "ctrl+c",
|
||||||
|
"command": "workbench.action.terminal.sendSequence",
|
||||||
|
"args": {
|
||||||
|
"text": "\u0003"
|
||||||
|
},
|
||||||
|
"when": "terminalFocus"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Source: [StackOverflow](https://stackoverflow.com/a/52735954/3015595)
|
||||||
|
|
||||||
## Recommendations
|
## Recommendations
|
||||||
|
|
||||||
Once you have code-server accessible to your iPad a few things could help save you time:
|
Once you have code-server accessible to your iPad a few things could help save you time:
|
||||||
|
|
Loading…
Reference in New Issue