[gedit-plugins] More gi require
- From: Paolo Borelli <pborelli src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit-plugins] More gi require
- Date: Sat, 29 Aug 2015 10:27:42 +0000 (UTC)
commit 99919344491ec785d8751d50d95532002ee580b8
Author: Paolo Borelli <pborelli gnome org>
Date: Sat Aug 29 11:41:25 2015 +0200
More gi require
plugins/bracketcompletion/bracketcompletion.py | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/plugins/bracketcompletion/bracketcompletion.py b/plugins/bracketcompletion/bracketcompletion.py
index b5ed50b..9da57c9 100644
--- a/plugins/bracketcompletion/bracketcompletion.py
+++ b/plugins/bracketcompletion/bracketcompletion.py
@@ -19,6 +19,10 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
+import gi
+gi.require_version('Gtk', '3.0')
+gi.require_version('Peas', '1.0')
+gi.require_version('Gedit', '3.0')
from gi.repository import GObject, Gtk, Gdk, Gedit
common_brackets = {
@@ -168,14 +172,14 @@ class BracketCompletionPlugin(GObject.Object, Gedit.ViewActivatable):
else:
return None, None, None
- def compute_indentation (self, cur):
+ def compute_indentation(self, cur):
"""
Compute indentation at the given iterator line
view : gtk.TextView
cur : gtk.TextIter
"""
start = self._doc.get_iter_at_line(cur.get_line())
- end = start.copy();
+ end = start.copy()
c = end.get_char()
while c.isspace() and c not in ('\n', '\r') and end.compare(cur) < 0:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]