Skip to content

Commit

Permalink
Small reorg of gedit extension and mention gedit/install.py in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stuaxo committed May 7, 2016
1 parent 7f03450 commit 39021b4
Show file tree
Hide file tree
Showing 24 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions doc/source/extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Installation

Run the following commands to add the plugin to Gedit:

$ cd shoebot/extensions/gedit3-plugin
$ cp shoebotit* ~/.local/share/gedit/plugins -r
$ cd shoebot/extensions/gedit
$ python install.py

Restart Gedit. Navigate to **Edit > Preferences > Plugins** and activate the
Shoebotit plugin.
Expand Down
2 changes: 1 addition & 1 deletion extensions/django
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys

here = os.path.dirname(os.path.abspath(__file__))
source_dirs = [here, os.path.normpath(os.path.join(here, '../lib'))]
source_dirs = [here, os.path.normpath(os.path.join(here, '../../lib'))]

def has_admin():
if os.name == 'nt':
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sys

here = dirname(abspath(__file__))
source_dirs = [here, normpath(join(here, '../lib'))]
source_dirs = [here, normpath(join(here, '../../lib'))]

def has_admin():
if os.name == 'nt':
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sys

here = dirname(abspath(__file__))
source_dirs = [here, normpath(join(here, '../lib'))]
source_dirs = [here, normpath(join(here, '../../lib'))]

def has_admin():
if os.name == 'nt':
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions extensions/install.py → extensions/gedit/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,5 @@ def gedit_install():


if __name__=="__main__":
print("Install gedit plugins")
print("Install gedit plugin")
gedit_install()
print("TODO - installers for other plugins")

0 comments on commit 39021b4

Please sign in to comment.