mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
[processing] start work on R lexer
This commit is contained in:
parent
59a5a14515
commit
ca22774589
108
python/plugins/processing/gui/LexerR.py
Normal file
108
python/plugins/processing/gui/LexerR.py
Normal file
File diff suppressed because one or more lines are too long
@ -29,6 +29,8 @@ from PyQt4.Qsci import *
|
||||
|
||||
from qgis.core import *
|
||||
|
||||
from sextante.gui.LexerR import LexerR
|
||||
|
||||
class ScriptEdit(QsciScintilla):
|
||||
|
||||
LEXER_PYTHON = 0
|
||||
@ -189,6 +191,6 @@ class ScriptEdit(QsciScintilla):
|
||||
self.lexer.setAPIs(self.api)
|
||||
elif self.lexerType == self.LEXER_R:
|
||||
# R lexer
|
||||
pass
|
||||
self.lexer = LexerR()
|
||||
|
||||
self.setLexer(self.lexer)
|
||||
|
Loading…
x
Reference in New Issue
Block a user