Compatibility fixes for OSX. Closes scoptaz/nanorc#13

* cython.nanorc: Remove non-greedy repetition operator, as it is not supported on OSX
 * fish.nanorc: Remove incompatible "magic" hint
 * pkgbuild.nanorc: Remove empty sub-expressions
This commit is contained in:
Elliot Saba 2013-07-22 21:24:55 -07:00
parent 424a4587a6
commit e2769e7661
3 changed files with 6 additions and 7 deletions

View file

@ -2,8 +2,8 @@
##
syntax "cython" "\.pyx$" "\.pxd$" "\.pyi$"
icolor brightred "def [ 0-9A-Z_]+"
icolor brightred "cpdef [ 0-9A-Z_]+\(.*?\):"
icolor brightred "cdef cppclass [ 0-9A-Z_]+\(.*?\):"
icolor brightred "cpdef [0-9A-Z_]+\(.*\):"
icolor brightred "cdef cppclass [ 0-9A-Z_]+\(.*\):"