Mislav Marohnić

Results 63 issues of Mislav Marohnić

Given this input: ``` Preceding blockquote paragraph > 1st blockquote paragraph > > quoted code block > > 2nd blockquote paragraph ``` The output is as such: ``` Precending blockquote...

bug
renderer

In e1ec57d48ac5c234262d84469af56b00b38929ab this line was added: ``` export POSIXLY_CORRECT=1 ``` And it probably fixed some issues in git-flow, but it causes breakages down the line. Specifically, when git-flow does `git...

In "strict" JS mode, the expression `function(){ return this }()` cannot be used to access the global object. This file would be affected by strict mode if it were concatenated...

I am on macOS and I often need to manually restart Hearthstone because of the rainbow graphics bug, which is a long-known bug which starts manifesting as graphics glitches that...

My Hearthstone directory on macOS is default as Blizzard wants it: `/Applications/Hearthstone`. After a recent track-o-bot update (perhaps 0.8.5, or maybe even earlier since I didn't play for a few...

I've recently had a good Arena run and a friend asked me which deck I used. I didn't screenshot it at the time, so I thought that Trackobot might have...

This is how I see it: The loss vs. “other hunter” doesn't have a rank indicator, although it was clearly at rank 5. This is not a huge issue; just...

I am on my MacBook with Retina display, and I see sharp images for class indicators, but rank indicators are low-resolution in comparison: The CSS for these images suggests that...

- Have `command.Print*()` print to stdout, and print errors & warnings to stderr - Deprecate `command.OutOrStderr()` - Handle errors in built-in help command *Warning:* backwards-incompatible. Fixes https://github.com/spf13/cobra/issues/1708

area/cobra-command
kind/deprecation
triage/needs-info
size/M

Consider the following program: ```golang c := cobra.Command{...} c.SetOut(os.Stdout) c.SetErr(os.Stderr) ``` **Expected behavior:** Cobra prints help text, version information, and shell completion to _Stdout_; and error messages (e.g. "unknown command")...

area/cobra-command