Improved qmarks model filling
thx to the fix from The-Compiler!
This commit is contained in:
parent
621388e5e0
commit
37023fe896
@ -205,14 +205,7 @@ class QuickmarkCompletionModel(basecompletion.BaseCompletionModel):
|
|||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
|
|
||||||
qmlist = []
|
qmlist = []
|
||||||
for qm in quickmarks.marks.items():
|
for qm_name, qm_url in quickmarks.marks.items():
|
||||||
# strange. in qm[0] is the first word of the quickmark,
|
|
||||||
# in qm[1] the rest. I have to split the url manually.
|
|
||||||
# omg help wtf bbq! FIXME
|
|
||||||
|
|
||||||
qm_splitter = str(qm[0] + ' ' + qm[1]).split(' ')
|
|
||||||
qm_name = ' '.join(qm_splitter[:-1])
|
|
||||||
qm_url = qm_splitter[-1]
|
|
||||||
qmlist.append((qm_url, qm_name))
|
qmlist.append((qm_url, qm_name))
|
||||||
|
|
||||||
cat = self.new_category("Quickmarks")
|
cat = self.new_category("Quickmarks")
|
||||||
|
Loading…
Reference in New Issue
Block a user