Created
June 15, 2015 02:49
-
-
Save nrbrd/df00122f90231d5081d4 to your computer and use it in GitHub Desktop.
CodeInput bug with IniLexer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from kivy.uix.codeinput import CodeInput | |
from kivy.lang import Builder | |
from kivy.app import App | |
from pygments.lexers.configs import IniLexer | |
class MainApp(App): | |
def build(self): | |
return CodeInput(lexer=IniLexer()) | |
if __name__ == '__main__': | |
MainApp().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
kivy/kivy#3434