* Automatic refactoring of Guile code
@ 2019-04-08 16:54 sirgazil
2019-04-08 18:57 ` Jérémy Korwin-Zmijowski
0 siblings, 1 reply; 5+ messages in thread
From: sirgazil @ 2019-04-08 16:54 UTC (permalink / raw)
To: Guile User
Hello,
I'm looking for tools to do common automatic refactoring in Emacs. Would
you mind sharing what you currently use?
--
Luis Felipe López Acevedo
http://sirgazil.bitbucket.io/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Automatic refactoring of Guile code
2019-04-08 16:54 Automatic refactoring of Guile code sirgazil
@ 2019-04-08 18:57 ` Jérémy Korwin-Zmijowski
2019-04-20 10:21 ` Роман Зайруллин
0 siblings, 1 reply; 5+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2019-04-08 18:57 UTC (permalink / raw)
To: guile-user, sirgazil, Guile User
Hello !
I am curious about answers too!
I use Paredit for small actions. I am trying Parinfer in combination.
I looked for refactoring packages for Emacs which provide extracting facilities like extract let context or extract function, ... Maybe it is something we can work on for Guile ?
With people interested in the challenge ?
Jeko
Le 8 avril 2019 18:54:07 GMT+02:00, sirgazil <sirgazil@zoho.com> a écrit :
>Hello,
>
>I'm looking for tools to do common automatic refactoring in Emacs.
>Would
>you mind sharing what you currently use?
>
>
>--
>Luis Felipe López Acevedo
>http://sirgazil.bitbucket.io/
--
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Automatic refactoring of Guile code
2019-04-08 18:57 ` Jérémy Korwin-Zmijowski
@ 2019-04-20 10:21 ` Роман Зайруллин
2019-04-20 16:05 ` sirgazil
0 siblings, 1 reply; 5+ messages in thread
From: Роман Зайруллин @ 2019-04-20 10:21 UTC (permalink / raw)
To: Jérémy Korwin-Zmijowski; +Cc: Guile User
Hello!
Wilfred made the refactor browser some time ago. It can only extract
variable and function now, but this browser is easily extensible. I will
add some extra tasks in a few months to it when will be working for
refactoring part of my current research of legacy software support technics.
https://github.com/Wilfred/emacs-refactor#user-content-scheme
пн, 8 апр. 2019 г. в 21:58, Jérémy Korwin-Zmijowski <
jeremy@korwin-zmijowski.fr>:
> Hello !
>
> I am curious about answers too!
> I use Paredit for small actions. I am trying Parinfer in combination.
> I looked for refactoring packages for Emacs which provide extracting
> facilities like extract let context or extract function, ... Maybe it is
> something we can work on for Guile ?
> With people interested in the challenge ?
>
> Jeko
>
> Le 8 avril 2019 18:54:07 GMT+02:00, sirgazil <sirgazil@zoho.com> a écrit :
> >Hello,
> >
> >I'm looking for tools to do common automatic refactoring in Emacs.
> >Would
> >you mind sharing what you currently use?
> >
> >
> >--
> >Luis Felipe López Acevedo
> >http://sirgazil.bitbucket.io/
>
> --
> Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma
> brièveté.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Automatic refactoring of Guile code
2019-04-20 10:21 ` Роман Зайруллин
@ 2019-04-20 16:05 ` sirgazil
2019-04-20 16:41 ` Роман Зайруллин
0 siblings, 1 reply; 5+ messages in thread
From: sirgazil @ 2019-04-20 16:05 UTC (permalink / raw)
To: Роман Зайруллин
Cc: Guile User
El sáb, 20 de abr 2019 a las 5:21 AM, Роман Зайруллин
<krosenmann@gmail.com> escribió:
> Hello!
>
> Wilfred made the refactor browser some time ago. It can only extract
> variable and function now, but this browser is easily extensible. I
> will add some extra tasks in a few months to it when will be working
> for refactoring part of my current research of legacy software
> support technics.
> https://github.com/Wilfred/emacs-refactor#user-content-scheme
Thanks! It could work for me if it gets more refactorings. I'll give it
a try when the build passes!
I think it would be nice if you could call simply "M-x emr-refactor"
instead of "M-x emr-show-refactor-menu", though...
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Automatic refactoring of Guile code
2019-04-20 16:05 ` sirgazil
@ 2019-04-20 16:41 ` Роман Зайруллин
0 siblings, 0 replies; 5+ messages in thread
From: Роман Зайруллин @ 2019-04-20 16:41 UTC (permalink / raw)
To: sirgazil; +Cc: Guile User
I think we'll be better if you bind this to the extra key stroke.
On Sat, Apr 20, 2019, 19:05 sirgazil <sirgazil@zoho.com> wrote:
> El sáb, 20 de abr 2019 a las 5:21 AM, Роман Зайруллин <
> krosenmann@gmail.com> escribió:
>
> Hello!
>
> Wilfred made the refactor browser some time ago. It can only extract
> variable and function now, but this browser is easily extensible. I will
> add some extra tasks in a few months to it when will be working for
> refactoring part of my current research of legacy software support technics.
> https://github.com/Wilfred/emacs-refactor#user-content-scheme
>
>
>
> Thanks! It could work for me if it gets more refactorings. I'll give it a
> try when the build passes!
>
> I think it would be nice if you could call simply "M-x emr-refactor"
> instead of "M-x emr-show-refactor-menu", though...
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-04-20 16:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-08 16:54 Automatic refactoring of Guile code sirgazil
2019-04-08 18:57 ` Jérémy Korwin-Zmijowski
2019-04-20 10:21 ` Роман Зайруллин
2019-04-20 16:05 ` sirgazil
2019-04-20 16:41 ` Роман Зайруллин
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).