Skip to content

Commit

Permalink
Merge branch 'python3'
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferyto committed May 8, 2013
2 parents af264cc + 18a892f commit 29af767
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 118 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.2.3 (2013-05-08):
* Gedit 3.8 / Python 3 compatibility (#4, thanks thapar!)
* Minor tweaks

v0.2.2 (2013-05-03):
* Fixed minor bug when the document name contains HTML tags
* Minor tweaks
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Switch between document tabs using Ctrl+Tab / Ctrl+Shift+Tab and
Ctrl+PageUp / Ctrl+PageDown
<https://github.com/jefferyto/gedit-control-your-tabs>
v0.2.2
v0.2.3

All bug reports, feature requests and miscellaneous comments are welcome
at the [project issue tracker][].
Expand All @@ -18,16 +18,22 @@ gedit 2 users should use [v0.1.2][].
## Installation ##

1. Download the source code (as [zip][] or [tar.gz][]) and extract.
2. Copy `controlyourtabs.plugin` and `controlyourtabs.py` into
`~/.local/share/gedit/plugins` (create if it does not exist).
2. Copy `controlyourtabs.py` and the appropriate `.plugin` file into
`~/.local/share/gedit/plugins` (create if it does not exist):
* For gedit 3.6 and earlier, copy `controlyourtabs.plugin.python2`
and rename to `controlyourtabs.plugin`.
* For gedit 3.8 and later, copy `controlyourtabs.plugin`.
3. Restart gedit, select **Edit > Preferences** (or
**gedit > Preferences** on Mac), and enable the plugin in the
**Plugins** tab.

## Usage ##

* Ctrl+Tab / Ctrl+Shift+Tab switch tabs in most recently used order.
* Ctrl+PageUp / Ctrl+PageDown switch tabs in tabbar order.
* <kbd>Ctrl</kbd>+<kbd>Tab</kbd> /
<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Tab</kbd> switch tabs in most
recently used order.
* <kbd>Ctrl</kbd>+<kbd>Page Up</kbd> /
<kbd>Ctrl</kbd>+<kbd>Page Down</kbd> switch tabs in tabbar order.

## Credits ##

Expand Down
5 changes: 3 additions & 2 deletions controlyourtabs.plugin
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# This file is for gedit 3.8 and later
[Plugin]
Loader=python
Loader=python3
Module=controlyourtabs
IAge=3
Name=Control Your Tabs
Description=Switch between document tabs using Ctrl+Tab / Ctrl+Shift+Tab and Ctrl+PageUp / Ctrl+PageDown
Authors=Jeffery To <jeffery.to@gmail.com>
Copyright=Copyright © 2010-2013 Jeffery To
Website=https://github.com/jefferyto/gedit-control-your-tabs
Version=0.2.2
Version=0.2.3
11 changes: 11 additions & 0 deletions controlyourtabs.plugin.python2
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is for gedit 3.6 and earlier
[Plugin]
Loader=python
Module=controlyourtabs
IAge=3
Name=Control Your Tabs
Description=Switch between document tabs using Ctrl+Tab / Ctrl+Shift+Tab and Ctrl+PageUp / Ctrl+PageDown
Authors=Jeffery To <jeffery.to@gmail.com>
Copyright=Copyright © 2010-2013 Jeffery To
Website=https://github.com/jefferyto/gedit-control-your-tabs
Version=0.2.3
Loading

0 comments on commit 29af767

Please sign in to comment.