mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
The current expressions fail to match certain permutations of options:
vim: noexpandtab: ft=javascript:
vim: titlestring=foo\ ft=notperl ft=javascript:
Version-specific modelines are also unaccounted for:
vim600: set foldmethod=marker ft=javascript: # >= Vim 6.0
vim<600: set ft=javascript: # < Vim 6.0
See http://vimdoc.sourceforge.net/htmldoc/options.html#modeline
5 lines
143 B
JavaScript
5 lines
143 B
JavaScript
# vim:noexpandtab titlestring=hi\|there\\\ ft=perl ts=4
|
|
# vim:noexpandtab titlestring=hi|there\\ ft=javascript ts=4
|
|
|
|
"Still JavaScript, bruh";
|