-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Links should be "openable" #43
Comments
weechat has raw-mode (M-L), which is quite handy for links |
@ptman what does that do? Something like just printing raw chat lines? |
Implemented in df3148b. I made it so that If the message is plaintext only, then |
Most links are longer than the chat-message-grid-column, and thus are broken up into the next line. Then, they cannot be opened by clicking (most modern terminals have such a feature), nor can they be selected easily for copying and pasting.
If a message has no attachments and
:open
is used, then do a simple match for^http(s)?://.+
or something like that, and pass a match to theopen
crate, it should open the browser.The text was updated successfully, but these errors were encountered: