[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Add completion to compilation-read-command
From: |
Philip Kaludercic |
Subject: |
Re: Add completion to compilation-read-command |
Date: |
Tue, 24 Dec 2024 11:35:11 +0000 |
Spyros Roum <spyros.roum@posteo.net> writes:
> Hello all,
>
> Recently, I started using `M-x compile` more but as I was used to my
> shell suggesting past commands as I type (and tools like atuin)
In case anyone else hasn't heard of this, it describes itself as
Atuin replaces your existing shell history with a SQLite database, and
records additional context for your commands. Additionally, it
provides optional and fully encrypted synchronisation of your history
between machines, via an Atuin server.
(https://github.com/atuinsh/atuin)
> , I was
> missing auto-complete a lot.
> I managed to add this functionality by writing a simple function based
> on compilation-read-command that uses completing-read instead of
> read-shell-command.
Do you know about the `bash-completion' package? It enhances
`read-shell-command' completion with completion data provided by bash.
It is very easy to set up,
(use-package bash-completion :ensure t
:init (bash-completion-setup))
should do it.
> Then I used advice-add to overwrite the
> original compilation-read-command with mine.
>
> So far this works well, and as far as I can tell there is no good
> reason not to make compile auto-completing, it already has a history
> that you can navigate anyway.
>
> With that said, this is the first time I write here and the first time
> I'm trying to contribute to emacs, so I'm not sure what the best way
> to go from here would be.
> I think some decisions would need to be taken, for once I am not sure
> if it's acceptable to change the default and make it completing or if
> there should be an option for it.
I am not sure if you meant to attach any code, but that would probably
be the best place to start.
> Looking forward to your feedback, thanks
- Add completion to compilation-read-command, Spyros Roum, 2024/12/24
- Re: Add completion to compilation-read-command,
Philip Kaludercic <=
- Re: Add completion to compilation-read-command, Juri Linkov, 2024/12/24
- Re: Add completion to compilation-read-command, Spyros Roum, 2024/12/24
- Re: Add completion to compilation-read-command, Juri Linkov, 2024/12/24
- Re: Add completion to compilation-read-command, Spyros Roum, 2024/12/24
- Re: Add completion to compilation-read-command, Philip Kaludercic, 2024/12/24
- Re: Add completion to compilation-read-command, Juri Linkov, 2024/12/25