Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Plugin for opening highlighted selection directly from Tmux copy mode.

Tested and working on Linux, OSX and Cygwin.
Tested and working on Linux, OSX, Cygwin and WSL with [wsl-open](https://github.com/4U6U57/wsl-open).

### Key bindings

Expand Down
2 changes: 2 additions & 0 deletions open.tmux
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ generate_open_command() {
echo "$(command_generator "open")"
elif is_cygwin; then
echo "$(command_generator "cygstart")"
elif command_exists "wsl-open"; then
echo "$(command_generator "wsl-open")"
elif command_exists "xdg-open"; then
echo "$(command_generator "xdg-open")"
else
Expand Down