Re: External psql editor

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Mladen Gogala <gogala(dot)mladen(at)gmail(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: External psql editor
Date: 2022-04-29 22:45:26
Message-ID: a1b5885f-0634-6324-a318-eb35ed45ec2b@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 4/29/22 12:50 PM, Mladen Gogala wrote:
> On 4/29/22 13:35, Jan Wieck wrote:
>> Not that I know of. \e starts the external editor and you have to save
>> and exit that editor to get back to psql in order to execute it. IMHO
>> the whole construct has very limited usability.
>>
>>
>> Regards, Jan
>
> Is there a way to define the name of the temporary file created by \e
> command? I'd like to name it "afiedt.buf", not for sentimental reasons.
> I already have a cron job that cleans afiedt.buf from my home directory
> every hour and having psql name temporary file like that would simplify
> the cleaning process. The name comes from another database with the same
> editor construct as \e. I am actually quite used to that.

If want to do something like that you would need to do(using VIM here):

\e
select 1;
:w afiedt.buf

or
:wq afiedt.buf

Assuming you closed the editor you could pick up the file later by doing.

\e afiedt.buf

>
> Regards
>
> --
> Mladen Gogala
> Database Consultant
> Tel: (347) 321-1217
> https://dbwhisperer.wordpress.com
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Avi Weinberg 2022-05-01 14:38:46 Is data passing between publisher and subscriber in logical replication compressed?
Previous Message Rich Shepard 2022-04-29 22:09:22 Re: External psql editor