[Bug 1246272] Re: Keyboard layout changing randomly

2014-08-09 Thread Sam M
*** This bug is a duplicate of bug 1240198 *** https://bugs.launchpad.net/bugs/1240198 I have the same issue (Ubuntu 14.04 with Unity): Swith between 'fr' and 'en' After boot my keyboard layout seems ALWAYS ok since I was able to connect with my old password (Note: I changed it, but the old

[Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
The plugin appears to be attempting to clear a marker bibtex-error that doesn't exist. Change /usr/lib/gedit/plugins/latex/editor.py, line 493 to check whether a key actually exists or not before trying to remove it. Insert: if (not marker_type in self._marker_types.keys()):

[Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Oh... the line: type_record.markers = [] Probably shouldn't be there? But it doesn't seem to break anything. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gedit-plugins in Ubuntu. https://bugs.launchpad.net/bugs/1021245 Title:

[Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Yes, it shouldn't be there, or whatever type_record was previously will get reset, which is probably a bad thing. Apologies for being hasty. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gedit-plugins in Ubuntu.

[Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Ok, after fixing that, I started to get other error messages about attributes not existing, etc. It seems the function BibTexEditor._parse() is generally broken. So I have removed the call to _parse() in BibTexEditor.onsave Comment out line 92 in /usr/lib/gedit/plugins/latex/bibtex/editor.py