(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
:
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
{ | |
"presets": ["es2015"], | |
"plugins": ["transform-runtime"] | |
} |
{"lastUpload":"2019-10-22T13:51:34.552Z","extensionVersion":"v3.4.3"} |
version: "2" | |
services: | |
# Reverse Proxy and Let's Encrypt | |
traefik: | |
container_name: traefik | |
image: traefik:alpine | |
restart: always | |
networks: | |
- srv |
const copyToClipboard = (text, successCallback, errorCallback) => { | |
const textArea = document.createElement('textarea') | |
textArea.value = text | |
document.body.appendChild(textArea) | |
textArea.select() | |
try { | |
// Now that we've selected the anchor text, execute the copy command | |
document.execCommand('copy') | |
? successCallback() |