%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
-- ELinks-side part of elinks-remote -- See script elinks-remote for explanation what's this about. ---------------------------------------------------------------------- -- User options ---------------------------------------------------------------------- -- File to look in for external url to jump to external_url_file = elinks_home.."/external.url" ---------------------------------------------------------------------- -- Implementation ---------------------------------------------------------------------- function external_url () fh = io.open (external_url_file, "r") aline = current_url () if fh then aline = read (fh, "*l") io.close (fh) else print ("Couldn't open outfile") end return aline end bind_key ("main", "x", function () return "goto_url", external_url () end) function set_external_url () fh = io.open (external_url_file, "w") aline = current_link () if fh then write (fh, aline.."\n") io.close (fh) else print ("Couldn't open outfile") end end bind_key ("main", "X", function () set_external_url () end) -- vim: shiftwidth=4 softtabstop=4