emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#69426: closed (29.2; Let eglot-rename suggest thing-at-point when re


From: GNU bug Tracking System
Subject: bug#69426: closed (29.2; Let eglot-rename suggest thing-at-point when renaming)
Date: Tue, 27 Feb 2024 16:01:02 +0000

Your message dated Tue, 27 Feb 2024 17:59:38 +0200
with message-id <86r0gxucd1.fsf@gnu.org>
and subject line Re: bug#69426: 29.2; Let eglot-rename suggest thing-at-point 
when renaming
has caused the debbugs.gnu.org bug report #69426,
regarding 29.2; Let eglot-rename suggest thing-at-point when renaming
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
69426: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=69426
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: 29.2; Let eglot-rename suggest thing-at-point when renaming Date: Tue, 27 Feb 2024 13:59:26 +0100
When using eglot-rename it asks for a new name (for the variable for
example) to rename to, it would be nice if there was a way to have the
current thing-at-point suggested as the new name.

Usually when renaming a variable you want to rename it to something that
is related to the current name with the defautl behavior you have to
type the current name manually.

I have a function like this that does it:

  (defun my-eglot-rename (newname)
    "Rename the current symbol to NEWNAME with initial input a."
    (interactive
     (list (read-from-minibuffer
            (format "Rename`%s' to: " (or (thing-at-point 'symbol t)
                                          "unknown symbol"))
            (or (thing-at-point 'symbol t) "") nil nil nil
            (symbol-name (symbol-at-point)))))
    (eglot--server-capable-or-lose :renameProvider)
    (eglot--apply-workspace-edit
     (jsonrpc-request (eglot--current-server-or-lose)
                      :textDocument/rename
`(,@(eglot--TextDocumentPositionParams)
                                             :newName ,newname))


which probably can work as advice to eglot-rename but it would be nice
if we can have this builtin.



--- End Message ---
--- Begin Message --- Subject: Re: bug#69426: 29.2; Let eglot-rename suggest thing-at-point when renaming Date: Tue, 27 Feb 2024 17:59:38 +0200
> Cc: 69426@debbugs.gnu.org
> From: Chmouel Boudjnah <chmouel@chmouel.com>
> Date: Tue, 27 Feb 2024 14:32:25 +0100
> 
> On Tue, Feb 27, 2024 at 2:29 PM Eshel Yaron <me@eshelyaron.com> wrote:
> 
> > > Usually when renaming a variable you want to rename it to something that
> > > is related to the current name with the defautl behavior you have to
> > > type the current name manually.
> >
> > Just hit M-n and it's there :)
> 
> Thanks Eshel, I always forget about that one! I guess we can close this then!

Done.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]