all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <moasen@zoho.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Elisp to open a line-wrapped URL
Date: Sun, 25 Feb 2018 23:43:56 +0100	[thread overview]
Message-ID: <867er0pu4z.fsf@zoho.com> (raw)
In-Reply-To: 86bmgcpuah.fsf@zoho.com

Maybe should reset search init position as well:

(require 'cl-lib)
(require 'thingatpt)
(require 'w3m)

(defun goto-next-url ()
  (interactive)
  (let ((start (point))
        (max   (point-max)))
    (cl-dolist (url-type thing-at-point-uri-schemes)
      (goto-char start)
      (when (re-search-forward url-type max t)
        (goto-char (match-beginning 0))
        (let ((url (thing-at-point 'url)))
          (when url
            (w3m-goto-url url)
            (cl-return) ))))))
;; (goto-next-url)
;; http://www.google.com

-- 
underground experts united
http://user.it.uu.se/~embe8573


  reply	other threads:[~2018-02-25 22:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-24 23:53 Elisp to open a line-wrapped URL ckhan
2018-02-25 15:07 ` Daniel Herzig
2018-02-25 20:01 ` Emanuel Berg
2018-02-25 22:40   ` Emanuel Berg
2018-02-25 22:43     ` Emanuel Berg [this message]
2018-02-26  5:02 ` Yuri Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=867er0pu4z.fsf@zoho.com \
    --to=moasen@zoho.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.