aafshar / pida-main

The main PIDA branch

Clone this repository (size: 4.7 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/aafshar/pida-main/
commit 2038: f73d0a21ec5c
parent 2037: 2ba75377a7f9
branch: default
finished moving quickopen plugin
a...@nano
9 months ago

Changed (Δ14 bytes):

raw changeset »

pida-plugins/quickopen/quickopen.py (3 lines added, 3 lines removed)

Up to file-list pida-plugins/quickopen/quickopen.py:

@@ -208,13 +208,13 @@ class QopenActionsConfig(ActionsConfig):
208
208
209
209
210
210
211
class Qopen(Service):
211
class QuickOpen(Service):
212
212
213
213
    #features_config = QopenFeaturesConfig
214
214
    actions_config = QopenActionsConfig
215
215
    options_config = QopenOptionsConfig
216
216
    #events_config = QopenEventsConfig
217
    label = "QOpen"
217
    label = "Quick Open"
218
218
219
219
    def pre_start(self):
220
220
        self._view = None
@@ -248,7 +248,7 @@ class Qopen(Service):
248
248
            self.boss.cmd('buffer', 'open_file', file_name=path)
249
249
250
250
# Required Service attribute for service loading
251
Service = Qopen
251
Service = QuickOpen
252
252
253
253
254
254