Dear developers Recently Geany implemented ctrl+tab to switch between different tabs.
2009-05-13 Nick Treleaven * src/keyfile.c: Remember scribble cursor position. * src/keybindings.c, TODO: Implement Most-Recently-Used document switching when pressing Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
I wanted to know whether this is a key binding that GTK+ supports natively, or whether in-house, Geany-specific modifications were needed to get this working in Geany.
Thank you Liviu
Hi,
On Thu, 29 Oct 2009 08:34:42 +0000 Liviu Andronic landronimirc@gmail.com wrote:
Dear developers Recently Geany implemented ctrl+tab to switch between different tabs.
2009-05-13 Nick Treleaven
- src/keyfile.c: Remember scribble cursor position.
- src/keybindings.c, TODO: Implement Most-Recently-Used document switching when pressing Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
I wanted to know whether this is a key binding that GTK+ supports natively, or whether in-house, Geany-specific modifications were needed to get this working in Geany.
I think you are refering to this svn commit: http://lists.uvena.de/geany-commits/2009-May/003373.html Inside the mail you can find a diff for this commit.
HTH, Frank
On Thu, 29 Oct 2009 11:41:55 +0100 Frank Lanitz frank@frank.uvena.de wrote:
Implement Most-Recently-Used document switching when pressing Ctrl-Tab keybinding. (It's probably not perfect, but works OK).
I wanted to know whether this is a key binding that GTK+ supports natively, or whether in-house, Geany-specific modifications were needed to get this working in Geany.
No, GTK doesn't support that.
I think you are refering to this svn commit: http://lists.uvena.de/geany-commits/2009-May/003373.html Inside the mail you can find a diff for this commit.
Yes, but IIRC this was only the initial work, there were other commits to make it work properly. Probably best is to just look at src/keybindings.c in SVN; search for uses of the mru_docs queue.
Regards, Nick
Wow, nice feature! I really missed that (but I rather had a go at doing while-typing search for achieving a way to quickly navigate through tabs ;) ).
I wonder if it's also possible to have a combo to toggle though the 2 or 3 most recent tabs (or a way to limit the mru list and let it wrap).
Best regards.
On Thu, 29 Oct 2009 20:27:51 +0100 Thomas Martitz thomas.martitz@student.HTW-Berlin.de wrote:
Wow, nice feature! I really missed that (but I rather had a go at doing while-typing search for achieving a way to quickly navigate through tabs ;) ).
Glad you like it ;-)
I wonder if it's also possible to have a combo to toggle though the 2 or 3 most recent tabs (or a way to limit the mru list and let it wrap).
Not sure if this is necessary, just let go of Ctrl and use Ctrl-Tab again.
Regards, Nick