all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Perry Smith <pedz@easesoftware.com>
Cc: emacs-devel <emacs-devel@gnu.org>
Subject: Re: Are variations such as these desired?
Date: Tue, 13 Dec 2022 10:18:29 -0500	[thread overview]
Message-ID: <jwv4jtzcplp.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <7CF4C507-1EE6-4DE3-966D-A7B6E49EFC0D@easesoftware.com> (Perry Smith's message of "Tue, 13 Dec 2022 08:50:34 -0600")

> So, your idea is like “align" except instead of using regular expressions, it
> would use Tree Sitter queries — or similar such concepts.

That's the idea, yes.

You could use the approach in your code: take point as a specification of
"the node to align", and then look at the children of that node and
their children's children, ...

For each level, check if all the children appear on a different line: if
they're all on the same line, we're too low in the tree and we should
stop recursing (if some are on the same line but not all, you get to
decide whether you want to try and align or not).

Otherwise, align them all together.  There might need to be some
heuristic (or major-mode-provided info) in this part so we do:

    x   = 5;
    yup = 42;

instead of

    x   = 5 ;
    yup = 42;

or

    x =   5 ;
    yup = 42;

For SMIE, we don't have "nodes", so I was thinking of having the user
specify a region of interest and look for tokens with the same
precedence placed on different lines.


        Stefan




  reply	other threads:[~2022-12-13 15:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-13  0:46 Are variations such as these desired? Perry Smith
2022-12-13 12:14 ` Eli Zaretskii
2022-12-13 13:18   ` Perry Smith
2022-12-13 14:36 ` Stefan Monnier
2022-12-13 14:50   ` Perry Smith
2022-12-13 15:18     ` Stefan Monnier [this message]
2022-12-26 16:19 ` Dmitry Gutov

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=jwv4jtzcplp.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@gnu.org \
    --cc=pedz@easesoftware.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 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.