maja42

Results 17 issues of maja42

Fixes #349. stdin, stdout and stderr can be overwritten with custom readers/writers. As a consequence, the host program's streams are not polluted by the LUA VM's output. LUA input/output can...

I got the following panic from within this library: ``` panic: runtime error: slice bounds out of range goroutine 21983 [running]: myApp/vendor/github.com/shiena/ansicolor.(*ansiColorWriter).Write(0xc0421c2000, 0xc04f2485b0, 0xc1, 0xd0, 0xd0, 0x0, 0x0) myApp/vendor/github.com/shiena/ansicolor/ansicolor_windows.go:384 +0x52b...

When setting the terminal color, ansicolor uses the file handle `syscall.Stdout` for the windows system calls. In my use case, this is not sufficient. I am compiling my go application...

## 🐛 Bug Report When performing a HTTP call using an unsupported method, for example when making a POST request to a URL that only supports GET, I get a...

bug
help wanted

## 🚀 Feature grpc-gateway offers the possibility do define custom `outgoingHeaderMatcher` to decide which grpc-headers should be forwarded as http-headers via a ServeMuxOption. However, grpc trailer-headers are always forwarded in...

bug
help wanted

Let's say I define an expression function `str(...)` that takes a single argument and converts it into a string. Now, when I have a variable with the same name ("str"),...

When using unicode-characters that are wider than standard characters in the view title, the line-characters of the frame are visible, and the overall text size is bigger. For example, if...

It would be really nice to allow view titles to be colorized independently of the frame. if v, err := g.SetView("command", 0, 0, 50, 50); err != nil && err...

The following Update function: ``` func Update(view *gocui.View) error { view.Clear() view.Write([]byte("")) fmt.Fprint(view, "") return nil } ``` prints spaces instead of underlines. Output: ![deleteme](https://user-images.githubusercontent.com/2649265/34638699-93eaa4de-f2d1-11e7-89a9-ffa0a322322b.PNG)

When running a go-executable on Windows 7, taskmaster is unable to create a scheduled task if the task folder does not exist. On other windows operating systems, the folder is...