From 0860a17e9f1add98933dfc6d955a655cbfa18ccf Mon Sep 17 00:00:00 2001 From: boatx <> Date: Sun, 1 Jul 2018 14:02:13 +0200 Subject: [PATCH] Add type key to found occurence. --- AUTHORS | 1 + pymode/rope.py | 1 + 2 files changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index f10422b6..8aa1d2c3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -16,6 +16,7 @@ Contributors: * Ashley Hewson (http://github.com/ashleyh); * Ben Davis (https://github.com/bendavis78); * Benjamin Ruston (http://github.com/bruston); +* Boatx (https://github.com/boatx) * Boris Filippov (http://github.com/frenzykryger); * Brad Belyeu (https://github.com/bbelyeu); * Brad Mease (http://github.com/bmease) diff --git a/pymode/rope.py b/pymode/rope.py index b48932b0..a573b032 100644 --- a/pymode/rope.py +++ b/pymode/rope.py @@ -183,6 +183,7 @@ def find_it(): filename=oc.resource.path, text=env.lines[oc.lineno - 1] if oc.resource.real_path == env.curbuf.name else "", # noqa lnum=oc.lineno, + type='' )) env.run('g:PymodeLocList.current().extend', lst)