Re: IntelliJ / Netbeans plugin for Nim

2020-03-16 Thread adnan
I think its more about sending patches to Kate so it accepts either of these two: [https://github.com/nim-lang/langserver/issues/2](https://github.com/nim-lang/langserver/issues/2)

Re: template expressions

2020-03-16 Thread daef
i mean it's not that hard to implement a little text copying routine that switches on an escapable token to a mode where chars get accumulated until the next delimiter before being thrown against mathexpr. i just thought someone else might already have solved this for me :)

Re: template expressions

2020-03-16 Thread daef
look's a bit overkill ^^ i'll give it a look if there's a lean way to render text templates without a dom :)

Re: template expressions

2020-03-16 Thread juancarlospaco
Karax ?.

Re: Change date name

2020-03-16 Thread daef
What you can always do is declare your own locale: import times let fr = DateTimeLocale( MMM: ["Jan", "Fev", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], : ["Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin",

Re: Change date name

2020-03-16 Thread JPLRouge
thank you great

Change date name

2020-03-16 Thread JPLRouge
Hello : how to change date from english to french thank you is var DefaultLocale* = DateTimeLocale( MMM: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], : ["January", "February", "March", "April", "May", "June",

Re: Change date name

2020-03-16 Thread daef
I fear you're out of luck: [https://github.com/nim-lang/Nim/blob/281e02fc797ad98013ab29525256ba2ffdaf96a7/lib/pure/times.nim#L437](https://github.com/nim-lang/Nim/blob/281e02fc797ad98013ab29525256ba2ffdaf96a7/lib/pure/times.nim#L437)

Re: IntelliJ / Netbeans plugin for Nim

2020-03-16 Thread rapidtransit440
@teras @machineko Any help is appreciated

template expressions

2020-03-16 Thread daef
i want an user to be able to use expressions in templates. nim-templates doesn't seem to support runtime-templates at all, neither nwt nor the mustach*s seem to evaluate expressions a'la {{ var/23 }}, so I'm currently using plain strutils format. what would be a simple way to wire up e.g.

Re: Nim lang for Raspberry Pi devices

2020-03-16 Thread federico3
Raspbian already provides the official Nim 1.0.6 package from Debian: [https://archive.raspbian.org/raspbian/pool/main/n/nim](https://archive.raspbian.org/raspbian/pool/main/n/nim)/

Re: Type safe opengl

2020-03-16 Thread Nycto
I considered that. But after reading about Godot keeping around support for OpenGL, I decided it wasn’t an unreasonable investment. And the two aren’t mutually exclusive.

nimble raises OSError on Windows

2020-03-16 Thread adnan
Since I fried my motherboard this afternoon I am now using a windows machine. I've installed nim with choosenim, even tested nim with a sample hello world project. However now I can't create a new project with nimble all of a sudden: PS C:\Users\Adnan\Downloads\proj> nimble init