browser icon indicating copy to clipboard operation
browser copied to clipboard

Package browser provides helpers to open files, readers, and urls in a browser window.

Results 15 browser issues
Sort by recently updated
recently updated
newest added

This patch adds support for [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/).

On many linux systems, the `BROWSER` environment variable allows users to specify their default browser, much like the `EDITOR` or `PAGER` environment variables. Would you be open to a PR...

I use it like this: ``` request, err := http.NewRequest("POST", login_url, strings.NewReader(formData.Encode())) if err != nil { return err } request.Header.Set("Referer", login_url) request.Header.Set("Content-Type", "application/x-www-form-urlencoded") response, err := client.Do(request) if err...

### Problem `browser` exposes the `Stdout` and `Stderr` vars for consuming packages to control where its output goes. This global state serves most purposes, but doesn't suffice if a project...

Currently, if `browser.OpenURL` is invoked multiple times, it will open multiple tabs in the web browser. I'd like to be able to maintain a single invocation, whereby the tab is...

help wanted

I see you've switched to go modules by adding `go.mod`. Could you now release a semver-formatted version of this library? I think that's as easy as `git tag v1.0.0` and...

Please update the "unsupported" case to be more useful. You could provide a browser.IsSupported() that returns `true` only on supported platforms. I find the use of build-time handling of different...

Is this project dead? I see no commits since September 2021. Consider deprecating and linking to fork https://github.com/cli/browser which is actively developed. https://go.dev/ref/mod#go-mod-file-module > To deprecate a module, an author...

Tagging a semantic version simplifies packaging on Linux, which in turn simpifies packaging applications that depend on this library. Please tag say v0.1.0. This is a very popular library, but...

This patch adds support wasm binaries to open tabs(since it is already on the browser) Changes: - Adds call to open new tab - Updates build directives