65 """ |
65 """ |
66 Public slot to save the Editor Highlighter Associations configuration. |
66 Public slot to save the Editor Highlighter Associations configuration. |
67 """ |
67 """ |
68 lexerAssocs = {} |
68 lexerAssocs = {} |
69 for index in range( |
69 for index in range( |
70 self.editorLexerList.topLevelItemCount()): |
70 self.editorLexerList.topLevelItemCount()): |
71 itm = self.editorLexerList.topLevelItem(index) |
71 itm = self.editorLexerList.topLevelItem(index) |
72 lexerAssocs[itm.text(0)] = itm.text(1) |
72 lexerAssocs[itm.text(0)] = itm.text(1) |
73 Preferences.setEditorLexerAssocs(lexerAssocs) |
73 Preferences.setEditorLexerAssocs(lexerAssocs) |
74 |
74 |
75 @pyqtSlot() |
75 @pyqtSlot() |