Sublime Forum

Url addresses clickable

#1

Hello, please tell me how to make links (url addresses) clickable? What double click or TP, they opened in the browser

0 Likes

#2

https://packagecontrol.io/packages/Clickable%20URLs

Especially, I add my own mouse/key-binding in Packages\User\Default.sublime-mousemap:

[
    // plugin: Clickable URLs
    // "ctrl + right click" = open URL in the browser
    { "button": "button2", "modifiers": ["ctrl"], "press_command": "open_context_url" },
]
0 Likes

#3

You may also prefer this approach:

image

2 Likes