luke-gru / riml

Riml is a subset of VimL with some nice added features. It compiles to plain VimL.
MIT License
224 stars 6 forks source link

Make the '.riml' optional in riml_include #6

Closed dsawardekar closed 10 years ago

dsawardekar commented 11 years ago

@luke-gru What do you think of just having riml_include 'foo', without the extension. Then detect that if the extension is not present and add it in. This reduces the verbosity in the includes, just a tad. :)

riml_include 'lorem.riml'

vs

riml_include 'lorem'
luke-gru commented 11 years ago

Okay sure, I'll let you know when it's ready. Thanks!

luke-gru commented 10 years ago

This is done and in master. It looks for the file given first, then falls back to looking for the file with the added extension.

Took long enough for a simple feature, sorry for delay :blush: