Jakub Žádník

Results 215 comments of Jakub Žádník

@gaborbernat Could you please comment whether this approach is what you had in mind when making the activation command a list of strings? Should I continue debugging it to make...

I didn't have time to investigate the Windows issue because I had to focus on my actual work but I'd like this to be finished. If you have an idea...

Seems to be introduced with https://github.com/nushell/reedline/pull/401

It seems the history database somehow gets corrupted. When I try to `open-db` it, it shows an error "Not a SQLite file".

Trying to run `nu` with the corrupted database results in ``` Error: × error within history database: SqliteFailure(Error { code: NotADatabase, extended_code: 26 }, │ Some("file is not a database"))...

It was on a compute cluster (that I do not administer) that has many nodes so it is quite possible it was due to some mounting etc.

Since it might be hard to track down the cause, I think the panic should first be patched ASAP with some error handling, then we can move on to figuring...

With the new engine-q modules system, it should be possible to hide user-defined commands and restore the default version. Right now, the built-in commands do not use the module system,...

@dandavison n-th element in Nushell is `get` and slice is `range`.

Seems like we all agree that `take` should always take a number, that is, `ls | take` should error. If you see `ls | take` in a script you wouldn't...