ratijas

Results 201 comments of ratijas

Also, when I cloned the repository, and loaded plugin from the latest master, errors slightly relocated: ``` zsh-syntax-highlighting.zsh:48: scalar parameter ZSH_HIGHLIGHT_REVISION set in enclosing scope in function (anon) zsh-syntax-highlighting.zsh:584: array...

Interesting. I'm using my dotfiles repository, branch `zsh`. Relevant options might be in [11.options-user.zsh](https://github.com/ratijas/dotfiles/blob/zsh/tag-zsh/config/zsh/zshrc.d/11.options-user.zsh). https://github.com/ratijas/dotfiles/tree/zsh.

Looking briefly at the code, I don't even know what could be wrong with it, or how zsh imagines it should be. ```zsh # Set $0 to the expected value,...

Oh, I'm sorry. I provided the wrong info. I have `WARN_NESTED_VAR` option on. Edited the top post. On a second thought, maybe I shouldn't be using this option. It seems...

+1 I've been using SDDM in pass-though mode (auto login without asking password) for a while, so I didn't notice until now. But since I reinstalled my system from scratch,...

> Slynobody said it pretty well, 2 years later, and still, nothing has happened. SDDM is pretty great, except for those bugs and people making software less customizable, which could...

> Because this module doesn't use `Set-Alias` (That **posh-git** mention). > This module use PowerShell function. > > `Set-Alias` doesn't work with command with arguments/parameters. That's perfectly understandable. Now every...

+1 Would be so nice to have a `Result[T, E]` with default `E=MyCommonlyUsedError` if omitted, and some other domain-specific error type otherwise.

As far as I remember, for now we can not do type aliases like this either: ``` IResult[T] = Result[T, IError] UResult[T] = Result[T, UError] ``` because of a syntax...