Skip to content

Instantly share code, notes, and snippets.

View VictorVG's full-sized avatar

Виктор VictorVG

  • Россия
  • 10:33 (UTC +03:00)
View GitHub Profile
@shmuz
shmuz / OpenURL.lua
Last active August 29, 2015 14:02
A Far Manager Editor macro for opening URL under cursor
-- shmuel 20.06.2014 00:22:00 +0200
-- http://forum.ru-board.com/topic.cgi?forum=5&topic=31718&start=5180#15
local patt = regex.new( [=[
\b http s? :\/\/ [^\s`'"[\](){}<>]+ |
\b ftp :\/\/ [^\s`'"[\](){}<>]+ |
\b www \d* \. [^\s`'"[\](){}<>]+ |
\b mailto: [^\s`'"[\](){}<>]+ |
(?: \b [a-z]:)? (?: [\\\/]? [\w.\-]+ )+ [\\\/]?
]=], "ix")