<< 22-02-2025 >>

00:47:23FromDiscord<nnsee> using paste.ee and not the superior pasty.ee
00:47:25FromDiscord<nnsee> smh
01:19:57*disso-peach quit (Quit: Leaving)
01:24:49FromDiscord<exelotl> c'mon, everyone knows pasta.ee is where it's at these days 🍝
01:25:31FromDiscord<Elegantbeef> Estonian pasta is a better idea than sharing code
02:23:09*beholders_eye quit (Ping timeout: 252 seconds)
02:33:16FromDiscord<albassort> maybe a bug found
02:34:11FromDiscord<albassort> sent a code paste, see https://play.nim-lang.org/#pasty=WamzAvYn
02:34:45FromDiscord<albassort> wait no thats a buffer issue
03:13:06*alexdaguy joined #nim
03:13:18FromDiscord<Robyn [She/Her]> In reply to @nnsee "using paste.ee and not": does pasty.ee have a web interface yet with syntax highlighting? :p
03:18:15*alexdaguy quit (Read error: Connection reset by peer)
03:29:59*SchweinDeBurg quit (Quit: WeeChat 4.6.0-dev)
03:30:26FromDiscord<lainlaylie> does https://play.nim-lang.org/ count
03:30:42FromDiscord<Robyn [She/Her]> no
03:30:45FromDiscord<Robyn [She/Her]> >:(
04:38:59*xet7 quit (Remote host closed the connection)
04:40:28*xet7 joined #nim
04:51:24*SchweinDeBurg joined #nim
06:04:54*Guest95 joined #nim
07:19:25*GnuYawk673 quit (Quit: The Lounge - https://thelounge.chat)
07:19:50*GnuYawk673 joined #nim
07:31:34*xet7 quit (Remote host closed the connection)
07:33:06*xet7 joined #nim
07:45:55*Guest95 quit (Quit: My Mac has gone to sleep. ZZZzzz…)
08:14:56*coldfeet joined #nim
08:22:06*ntat joined #nim
08:51:32*tokyovigilante quit (Remote host closed the connection)
08:54:53*tokyovigilante joined #nim
09:15:56*tokyovigilante quit (Remote host closed the connection)
09:16:10*tokyovigilante joined #nim
11:06:21FromDiscord<aintea> sent a code paste, see https://play.nim-lang.org/#pasty=BflLprYa
11:14:18*beholders_eye joined #nim
11:33:32FromDiscord<lainlaylie> does it work if you remove the `src/`?
11:33:56FromDiscord<lainlaylie> (edit) "`src/`?" => "`./src/`?"
11:46:43FromDiscord<odexine> That, and what’s the content of the config file in tests? Is it the default generated or did you change anything
12:55:54FromDiscord<aintea> The config file is empty
12:56:01FromDiscord<aintea> In reply to @lainlaylie "does it work if": Still doesn't work
12:56:08FromDiscord<aintea> I tried it without the `.nim` too
12:56:18FromDiscord<lainlaylie> If the config file is empty, try ../nimlings001_variables.nim
12:56:36FromDiscord<lainlaylie> import paths are relative to the module, and i assume the same is true for include paths
12:56:48FromDiscord<aintea> Sure I'll try
12:56:53FromDiscord<aintea> But that doesn't make any sense to me
12:57:43FromDiscord<lainlaylie> if you want to be able to use `./src/...`, `switch("path", "$projectDir/..")` in `config.nims` should do the trick
12:58:04FromDiscord<lainlaylie> (edit) "`config.nims`" => "`tests/config.nims`"
12:58:07FromDiscord<odexine> In reply to @aintea "But that doesn't make": Why?
13:04:16FromDiscord<lainlaylie> In reply to @lainlaylie "if you want to": or not, cause the `.` makes it a relative path?
13:07:27FromDiscord<aintea> In reply to @odexine "Why?": Because ../nimlings001_variables.nim implies I'm in a subdirectory of src
13:07:29FromDiscord<aintea> Which I am not
13:09:33FromDiscord<odexine> Ah, they made a mistake
13:09:38FromDiscord<lainlaylie> my mistake, it should probably be "../src/..."
13:09:41FromDiscord<odexine> Yeah
13:10:24FromDiscord<lainlaylie> but really just put `switch("path", "$projectDir/../src")` in tests/config.nims and `include nimlings...` and be done with it
13:14:17FromDiscord<lainlaylie> In reply to @lainlaylie "my mistake, it should": im too used to ignoring nimble's defaults and putting my root module next to the nimble file