git @ Cat's Eye Technologies tideay / 158973c
Add Lua to the language-sniffing. Chris Pressey 11 years ago
2 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
125125 documented in this README for now.
126126 * The hashbang line of the file will be sniffed if the language cannot be
127127 determined from the the file extension. Currently supports Python, Ruby,
128 and shell.
128 Lua, and shell.
129129 * Special read-only editor panes can show output from a periodically-run
130130 command. The only one implemented so far is a pane that shows the
131131 output of `git diff`, created by Ctrl+D.
343343 langs = (
344344 ('python', 'text/x-python'),
345345 ('ruby', 'text/x-ruby'),
346 ('lua', 'text/x-lua'),
346347 ('bin/sh', 'text/x-sh'),
347348 ('bash', 'text/x-sh'),
348349 )