2025/03/01

Newest at the top

2025-03-01 12:31:02 +0100 <euouae> but I don't want squiggly lines, annoying pop ups, etc
2025-03-01 12:30:52 +0100 <euouae> I can check whatever I need when I check that window
2025-03-01 12:30:40 +0100 <euouae> no, those are in a separate window
2025-03-01 12:30:36 +0100 <tomsmeding> I'd find that annoying too :p
2025-03-01 12:30:31 +0100 <tomsmeding> do warnings also pop up?
2025-03-01 12:30:26 +0100 <tomsmeding> I find them annoying in vim too but from what you're saying it's not quite as bad :)
2025-03-01 12:30:20 +0100 <euouae> pop up messages that hide other stuff, etc
2025-03-01 12:30:01 +0100 <euouae> It's attention-grabbing and erratic
2025-03-01 12:29:49 +0100 <tomsmeding> euouae: how does it look in emacs?
2025-03-01 12:29:39 +0100 <euouae> they're just not interacting well with emacs, that's all
2025-03-01 12:29:27 +0100 <euouae> but anyway, the slice of haskell + emacs programmers is so small that maybe it doesn't matter
2025-03-01 12:29:10 +0100 <euouae> They should be opt-in
2025-03-01 12:29:02 +0100 <tomsmeding> I'm not saying stan or hlint are bad, I personally just don't need or want them in my editor (and I think HLS is a bit over-eager in making them opt-out instead of opt-in)
2025-03-01 12:28:17 +0100 <euouae> I think stan is the otehr one. I've noticed I get lint-like things from 2 difefrent sources
2025-03-01 12:28:15 +0100 <tomsmeding> more annoying messages :3
2025-03-01 12:28:09 +0100 <euouae> what's that?
2025-03-01 12:28:02 +0100 <tomsmeding> (I have that set, as well as haskell.plugin.stan.globalOn = false)
2025-03-01 12:27:38 +0100tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2025-03-01 12:27:37 +0100 <euouae> thank you!!
2025-03-01 12:24:45 +0100 <tomsmeding> Leary: I've actually seen that before, it's genius
2025-03-01 12:23:05 +0100alfiee(~alfiee@user/alfiee) (Ping timeout: 265 seconds)
2025-03-01 12:18:32 +0100alfiee(~alfiee@user/alfiee) alfiee
2025-03-01 12:17:56 +0100 <tomsmeding> the setting you need to set is haskell.plugin.hlint.globalOn = false
2025-03-01 12:17:37 +0100 <tomsmeding> euouae: figure out where you put language server configuration in your emacs LSP client
2025-03-01 12:14:33 +0100talismanick(~user@2601:644:937c:ed10::ae5) (Ping timeout: 245 seconds)
2025-03-01 12:14:21 +0100 <euouae> I've tried to turn them off selectively I'm thinking that I just don't want them at all
2025-03-01 12:13:56 +0100 <euouae> You're moving the cursor point on a symbol to see its type and boom Clippy pops up "It looks like you're not optimizing your endofunctors here"
2025-03-01 12:13:08 +0100 <euouae> holy cow they're annoying on emacs
2025-03-01 12:13:03 +0100 <euouae> Does anyone know how I can turn off all the hlint recommendations
2025-03-01 12:12:22 +0100talisman`(~user@2601:644:937c:ed10::ae5)
2025-03-01 12:06:26 +0100lxsameer(~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds)
2025-03-01 11:59:29 +0100killy(~killy@terminal-3-187.retsat1.com.pl) (Ping timeout: 248 seconds)
2025-03-01 11:54:14 +0100 <Leary> tomsmeding: https://hackage.haskell.org/package/BASIC-0.1.5.0/docs/Language-BASIC.html
2025-03-01 11:52:26 +0100 <euouae> nice, thakn you
2025-03-01 11:51:55 +0100 <tomsmeding> you always need to list all modules that you're defining in the cabal file, either in other-modules or in exposed-modules (the latter relevant only for libraries)
2025-03-01 11:51:55 +0100__monty__(~toonn@user/toonn) toonn
2025-03-01 11:51:27 +0100 <tomsmeding> right, you need `other-modules: Tests` in the test-suite block in your cabal file
2025-03-01 11:51:27 +0100 <euouae> It's a warning-Wmissing-home-modules
2025-03-01 11:51:17 +0100 <euouae> naming Tests as the module
2025-03-01 11:51:10 +0100 <euouae> I get `These modules are needed for compilation but not listed in your .cabal file's other-modules for ‘leetcode-0.1.0.0-inplace-leetcode-test’ :`
2025-03-01 11:51:05 +0100 <tomsmeding> `import Tests`?
2025-03-01 11:50:55 +0100 <euouae> Tests.hs has the hedgehog generated/discovered tests, how can I import that in Main.hs?
2025-03-01 11:50:40 +0100 <euouae> Another stupid question, in my test/ I have Main.hs and Tests.hs
2025-03-01 11:50:28 +0100 <euouae> I get ti
2025-03-01 11:49:37 +0100 <tomsmeding> would that be `Exercises.12 input`? how would the parser even know what you mean tthere
2025-03-01 11:49:22 +0100 <lambdabot> True
2025-03-01 11:49:20 +0100 <tomsmeding> > Data.Maybe.isJust (Just 42)
2025-03-01 11:49:14 +0100 <tomsmeding> euouae: imagine what would happen if you would try to use such a module qualified
2025-03-01 11:48:35 +0100 <euouae> Okay, thank you. I'm actually thinking I'll just keep it all in one flat file
2025-03-01 11:48:22 +0100 <tomsmeding> yes