emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Leu Zhe <lzhes43@gmail.com>
To: icymist@gmail.com, "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Word under cursor to internal link
Date: Fri, 19 Dec 2014 10:45:09 +0900	[thread overview]
Message-ID: <CALjq+LY37SX-qWtjQRg+9E-KTKr203TFx9Y_hKLEy3=ecvjUKQ@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

You can use the function below to make it.
But in order to replace it rightly, you need to put you cursor inside the
word or at the beginning of the word.

(defun word-to-link ()
  (interactive)
  (let ((word (thing-at-point 'word)))
    (forward-word)
    (kill-word -1)
    (insert (format "[[%s]]" word))))

Hope it helps. And any improvement will be welcome.

[-- Attachment #2: Type: text/html, Size: 518 bytes --]

             reply	other threads:[~2014-12-19  1:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-19  1:45 Leu Zhe [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-12-19  0:31 Word under cursor to internal link Chaitanya Krishna
2014-12-19  1:08 ` John Kitchin

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

  List information: https://www.orgmode.org/

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

  git send-email \
    --in-reply-to='CALjq+LY37SX-qWtjQRg+9E-KTKr203TFx9Y_hKLEy3=ecvjUKQ@mail.gmail.com' \
    --to=lzhes43@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=icymist@gmail.com \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).