Skip to content

Instantly share code, notes, and snippets.

@nrbrd
Created June 15, 2015 02:49
Show Gist options
  • Save nrbrd/df00122f90231d5081d4 to your computer and use it in GitHub Desktop.
Save nrbrd/df00122f90231d5081d4 to your computer and use it in GitHub Desktop.
CodeInput bug with IniLexer
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()
@nrbrd
Copy link
Author

nrbrd commented Jun 15, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment