Oh how I love Ubuntu and all its features, but this "bug" has been making me angry for so long and I've finally decided to ask for help here.
I've assigned all .php
files to be opened with gedit whenever I double-click them in nautilus. Now, the behavior is strange.
- I have no gedit running
- I double click a file to be opened
- A gedit window opens and the file loads
- I double click another file to be opened
Now, there are 2 possible outcomes:
5A) The file opens in the same gedit window in a new tab
5B) The file opens in a new gedit window, resulting in 2 gedits running.
Whether A or B happens seems to be totally random and keeps on going infinitely. That means I double click on 100 files and I might end up with 60 gedits, some of which will have 1 tab, some will have 2 tabs, some will have 3 tabs...
This is extremely annoying and a fix for this would be very appreciated. Anyone ever tried to fix this problem?
This has happened in Ubuntu 10.04, 10.10 and 11.10. All Ubuntu versions I've ever tested.
Why...
gedit
has quite an interesting algorithm to determine whether it opens a new instance or if it opens in a tab in an existing instance.Located in the source file
gedit-app.c
in the functionstatic boolean is_in_viewport
, the algorithm tests if the current gedit instance isIf all are true then gedit opens in the same instance in a new tab otherwise it opens in a new window.
In summary - the only realistic way of changing the behaviour is to change the algorithm...
How...
The following is a quick way to get a consistent way of opening gedit... it will always open a new instance.
install the basic development tools
get the source
make the change
Open gedit-app.c
add
return FALSE;
as shown and save.What this does is to always exit the routine saying "i'm not running in a viewport and therefore always open a new instance"
If you use
return TRUE;
this will always open in an existing instance of gedit in a new tab...give it a unique package name
OK, we need to give the package a unique name to prevent repository updates from overwriting your changed package
now append
+yourname
to the top line version and save the file i.e.Note - to be absolutely sure - after installing the modified package below, lock the version as per the linked question below.
build the package
Go for a coffee...
Linked Question:
I wanted to have all files opened in only one gedit window. I didn't find this information somewhere else, but with the following changes I managed to have all text files open in only one window as new tabs, no mather how I open them (via launcher, via nautilus, via Gnome DO).
Get the display number: type
echo $DISPLAY
in the command line. e.g. you get:0
as your display number.Open
/usr/share/applications/gedit.desktop
as superuser with a text editor.Change the line saying:
to
where
:0
is your display number.This doesnt happen randomly
By default Gedit isnt made to open many instances but one one each display. If u open in display where isnt yet Gedit will open files in Gedit witch exists now in that display from witch is opened file.
So u can make 1st instance of gedit to be on All workspaces so it follows ur active display. Or work on each workspace with each project and each with its own opened Gedit`s. In keyboard shortcuts u can make new shortcut for toggling window beeing on all workspaces.
OR its possible to make it allways open in new instance using shortcut command in Open With..
gedit --new-window
So u can try in php properties open with reset and put new opening with just Gedit
using
gedit --help-all
ull see other option of opening with gedit.And u can also try removing gedit with all configuration files and installing it clean using
sudo apt-get purge gedit && sudo apt-get clean && sudo apt-get update && sudo apt-get install gedit
UPDATE: I was able to reproduce- when moving window a little off screen then opening some file opens in new window. It somehow thinks that its in another Display.
This started happening to me. I couldn't find any relevant conf file, and even tried purge+clean. Finally found what it was. The Gedit window was opening such that it looked like it was maximized but it wasn't. I pressed the maximize button on the window and this fixed the issue! Note that the window did not change size, only the corners went from round to square. It seems like this must be a bug in the algorithm @fossfreedom described above.
Note: When you close the window, the maximize/minimize state must be stored in some user config somewhere. This state survives purge+clean, and it's not in per-user Gedit confs either.
Just maximize your gedit window and all will open in different tabs. Worked for me in Ubuntu 18.