From: acomber <deedexy@gmail.com>
To: Help-gnu-emacs@gnu.org
Subject: Re: elisp how to insert text at end of each line
Date: Thu, 11 Apr 2013 07:02:58 -0700 (PDT) [thread overview]
Message-ID: <1365688978229-283483.post@n5.nabble.com> (raw)
In-Reply-To: <87vc7tcnfq.fsf@gmail.com>
Don't know if its useful but as a result of learning from this forum, I
implemented like this:
(defun do-cols (text)
(goto-char (point-min))
(while (search-forward "\t" nil t)
(replace-match text)
)
)
(defun do-rows (text)
"convert word tbl to html tbl"
(interactive)
(goto-char (point-min))
(while (not (eobp))
(end-of-line)
(insert text)
(forward-line)
)
)
(defun do-table ()
"convert word tbl to html tbl"
(interactive)
(goto-char (point-min))
(insert "
")
(insert "
")
(insert " ")
(do-cols " ")
(do-rows "
")
(insert "")
(insert "")
(insert "
")
)
It’s probably the naffest lisp function ever, but it works for me.
It requires the only text in the buffer to be the table data and only works
on a single table.
--
View this message in context: http://emacs.1067599.n5.nabble.com/elisp-how-to-insert-text-at-end-of-each-line-tp283410p283483.html
Sent from the Emacs - Help mailing list archive at Nabble.com.
next prev parent reply other threads:[~2013-04-11 14:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-10 17:28 elisp how to insert text at end of each line acomber
2013-04-10 17:36 ` Steven Degutis
2013-04-10 17:39 ` Teemu Likonen
2013-04-10 17:42 ` Teemu Likonen
2013-04-10 18:13 ` Thorsten Jolitz
2013-04-11 10:23 ` acomber
2013-04-11 10:50 ` Andreas Röhler
2013-04-11 11:01 ` Andreas Röhler
2013-04-11 11:32 ` Thorsten Jolitz
2013-04-11 14:02 ` acomber [this message]
[not found] <mailman.23893.1365614915.855.help-gnu-emacs@gnu.org>
2013-04-10 18:07 ` Michael Heerdegen
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.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1365688978229-283483.post@n5.nabble.com \
--to=deedexy@gmail.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.
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).