Skip to content

Commit 3604026

Browse files
committed
Add Cython support
Cython / Pyrex files can show as .pyx | .pxi | .pxd and share most of the Python syntax. Issue #99
1 parent 485b764 commit 3604026

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ pub enum Lang {
6464
Css,
6565
CUDA,
6666
CUDAHeader,
67+
Cython,
6768
D,
6869
Dart,
6970
DeviceTree,
@@ -184,6 +185,7 @@ impl Lang {
184185
Css => "CSS",
185186
CUDA => "CUDA",
186187
CUDAHeader => "CUDA Header",
188+
Cython => "Cython",
187189
D => "D",
188190
Dart => "Dart",
189191
DeviceTree => "DeviceTree",
@@ -398,6 +400,7 @@ pub fn lang_from_ext(filepath: &str) -> Lang {
398400
"purs" => PureScript,
399401
"arr" => Pyret,
400402
"py" => Python,
403+
"pxi" | "pxd" | "pyx" => Cython,
401404
"r" => R,
402405
"rake" | "rb" => Ruby,
403406
"rhtml" | "erb" => RubyHtml,
@@ -468,9 +471,9 @@ pub fn counter_config_for_lang<'a>(lang: Lang) -> (SmallVec<[&'a str; 3]>, Small
468471
Perl => (smallvec!["#"], smallvec![("=pod", "=cut")]),
469472
Puppet => (smallvec!["#"], smallvec![]),
470473
Pyret => (smallvec!["#"], smallvec![("#|", "|#")]),
471-
Python => (smallvec!["#"], smallvec![("'''", "'''")]),
472474
Ruby => (smallvec!["#"], smallvec![("=begin", "=end")]),
473475
Sql => (smallvec!["--"], smallvec![("/*", "*/")]),
476+
Python | Cython => (smallvec!["#"], smallvec![("'''", "'''")]),
474477

475478
Haskell | Idris | Agda | PureScript | Elm => (smallvec!["--"], smallvec![("{-", "-}")]),
476479

0 commit comments

Comments
 (0)