poelzi / pida-poelzi-newbuffer

fork of pida-main

this is an experimental, long living branch for 0.7 most likely. it's a complete redesign of the core<->editor interface. goals: - editors will require dbus, direct embedding or a similar technique which must be able to control the editor from background - cleaner api - support for split views. one buffer on different views etc. (at least from the api side it's possible)

Changed (Δ1 byte):

raw changeset »

pida/core/charfinder.py (1 lines added, 1 lines removed)

Up to file-list pida/core/charfinder.py:

@@ -73,7 +73,7 @@ class DetectorManager:
73
73
    def append_detector(self, detector):
74
74
        self.detectors.append(detector)
75
75
    
76
    def insert_detector(sef, index, detector):
76
    def insert_detector(self, index, detector):
77
77
        self.detectors.insert(index, detector)
78
78
79
79
##############################################################################