Skip to content

Commit

Permalink
docs: email selected files using Thunderbird (#162)
Browse files Browse the repository at this point in the history
Co-authored-by: sxyazi <[email protected]>
  • Loading branch information
anthonyco and sxyazi authored Nov 5, 2024
1 parent f83fed1 commit 7757c21
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,23 @@ Original post: https://github.com/zellij-org/zellij/issues/3018#issuecomment-208
<video src="https://github.com/helix-editor/helix/assets/17523360/a4dde9e0-96bf-42a4-b946-40cbee984e69" width="100%" controls muted></video>
</details>
## Email selected files using Thunderbird
To send selected files using Thunderbird, with a keybinding <kbd>Ctrl</kbd> + <kbd>e</kbd>:
```toml
# ~/.config/yazi/keymap.toml
[[manager.prepend_keymap]]
on = "<C-e>"
run = '''
shell --confirm '
paths=$(for p in "$@"; do echo "$p"; done | paste -s -d,)
quoted="'\'$paths\''"
thunderbird -compose "attachment=$quoted"
'
'''
```
## Make Yazi even faster than fast {#make-yazi-even-faster}
While Yazi is already fast, there is still plenty of room for optimization for specific users or under certain conditions:
Expand Down

0 comments on commit 7757c21

Please sign in to comment.