Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for python3 #27

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@ Installation
5. (Optional) If you want to enable the configuration dialog you need to compile
the settings schema. You must do this as root.

cd /home/<YOUR USER NAME>/.local/share/gedit/plugins/sourcecodebrowser/data/
```
cd /home/<YOUR USER NAME>/.local/share/gedit/plugins/sourcecodebrowser/data/

cp org.gnome.gedit.plugins.sourcecodebrowser.gschema.xml /usr/share/glib-2.0/schemas/

glib-compile-schemas /usr/share/glib-2.0/schemas/
```

Screenshots
-----------
Expand Down
2 changes: 1 addition & 1 deletion sourcecodebrowser.plugin
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Plugin]
Loader=python
Loader=python3
Module=sourcecodebrowser
IAge=3
Name=Source Code Browser
Expand Down
5 changes: 2 additions & 3 deletions sourcecodebrowser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
import plugin
from plugin import SourceCodeBrowserPlugin

from . import plugin
from . plugin import SourceCodeBrowserPlugin
4 changes: 2 additions & 2 deletions sourcecodebrowser/ctags.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def parse(self, command, executable=None):
#args = [arg.replace('%20', ' ') for arg in shlex.split(command)]
args = shlex.split(command)
p = subprocess.Popen(args, 0, shell=False, stdout=subprocess.PIPE, executable=executable)
symbols = self._parse_text(p.communicate()[0])
symbols = self._parse_text(p.communicate()[0].decode('utf8'))

def _parse_text(self, text):
"""
Parses ctags text which may have come from a TAG file or from raw output
Expand Down
Loading