Re: closing a named buffer?

2022-12-14 Thread Dr Eberhard W Lisse
buffer-close-all will do what I want for this particular issue. el On 14/12/2022 18:18, Paul A. Rubin wrote: > On 12/14/22 10:52, Dr Eberhard Lisse wrote: >> Hi, >> >> I can easily close the current buffer with a command like (on the mac) >> >>     LYXPIPE=$(find ~/Library/Application\ S

Re: closing a named buffer?

2022-12-14 Thread Paul A. Rubin
On 12/14/22 10:52, Dr Eberhard Lisse wrote: Hi, I can easily close the current buffer with a command like (on the mac) LYXPIPE=$(find ~/Library/Application\ Support ~/.lyx \ -name .lyxpipe.in 2>/dev/null | head -1) echo "LYXCMD:P2:buffer-close" > "$LYXPIPE" Is it possible

closing a named buffer?

2022-12-14 Thread Dr Eberhard Lisse
Hi, I can easily close the current buffer with a command like (on the mac) LYXPIPE=$(find ~/Library/Application\ Support ~/.lyx \ -name .lyxpipe.in 2>/dev/null | head -1) echo "LYXCMD:P2:buffer-close" > "$LYXPIPE" Is it possible to close a named buffer even another was "active" usi