I use multiple workspaces and I open text files all the time.

Once upon a time Mousepad used to behave sanely and would open them in a new tab if there was already an instance on the current workspace, or open a new window (on the current workspace) if there wasn’t.

They broke that at some point. Now it’s anybody’s guess where the file will open. Maybe it opens in a tab in an existing window on this workspace. Maybe in a tab in a window on a random workspace. Maybe a new window on this workspace even though there’s one open. I’ve given up trying to figure it out.

As a last resort I can use wmctrl to figure out how to open the files and can script a sane launcher myself – provided that the editor has --tab and --window options AND lets you specify the window instance. Mousepad has the former but not the latter.

So, do you know any editor that can do it by itself or has those options so I can do it myself? TIA

7 points

If you open Emacs in daemon+client mode (run emacs --daemon once, then emacsclient to open the window), buffers that you open in one client will be available on all other clients, even concurrently. Judging from a quick test (on hyprland), it also seems to open the file in the client located on the focused screen, but does not automatically open a new client if there is one already running on any screen.

permalink
report
reply
6 points

They broke that at some point.

Feel free to write a bugreport.

permalink
report
reply
3 points

I think it was done on purpose.

Anyway… I figured out a workaround in my script. By focusing one of the windows on the current workspace before I open a new tab it seems to make it the preferred window. It’s not foolproof, sometimes it still selects one of the other windows, but it’s close enough.

Here’s the script in case anybody needs it, should work with any editor that has some sort of -tab and -window options if you grep for the correct window name:

#!/bin/bash
WORKSPACE=$(
	wmctrl -d |\
	grep '*' |\
	awk '{print $1}'
)

WINID=$(
	wmctrl -l |\
	grep ' - Mousepad' |\
	grep -E "\s${WORKSPACE}\s"|\
	tail -1|\
	awk '{print $1}'
)

if [ -z "$WINID" ]; then
	exec /usr/bin/mousepad -o window "$@"
else
	wmctrl -i -a "$WINID" && \
	sleep 0.5 && \
	exec /usr/bin/mousepad -o tab "$@"
fi
permalink
report
parent
reply
2 points

I guess you could give a few a try.

I use Xed and Geany and they seem to work as expected.

permalink
report
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 8.9K

    Monthly active users

  • 5.6K

    Posts

  • 154K

    Comments