Prashant V
Prashant V
+1 running into the same issue.
Here are my logs: https://gist.github.com/anonymous/acabb834f7de2a4c3a64
Here is my environment: ``` AUTOJUMP_ERROR_PATH=/Users/prashant/Library/autojump/errors.log AUTOJUMP_SOURCED=1 Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.58k0JjfIYT/Render DISPLAY=/private/tmp/com.apple.launchd.sshW612dML/org.macosforge.xquartz:0 EDITOR=vim GOPATH=/Users/prashant/gocode HOME=/Users/prashant ITERM_PROFILE=Prashant ITERM_SESSION_ID=w1t0p0 LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LESS=-R LOGNAME=prashant LSCOLORS=Gxfxcxdxbxegedabagacad MANPATH=/Users/prashant/.nvm/v0.10.32/share/man:/usr/local/share/man:/usr/share/man:/opt/X11/share/man:/Applications/Xcode.app/Contents/Developer/usr/share/man:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/man NVM_BIN=/Users/prashant/.nvm/v0.10.32/bin NVM_DIR=/Users/prashant/.nvm NVM_IOJS_ORG_MIRROR=https://iojs.org/dist NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist NVM_PATH=/Users/prashant/.nvm/v0.10.32/lib/node OLDPWD=/Users/prashant PAGER=less PATH=/Users/prashant/.dnx/runtimes/dnx-mono.1.0.0-beta7/bin:/Users/prashant/.dnx/bin:/Users/prashant/.nvm/v0.10.32/bin:/usr/local/sbin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/go/bin:/Users/prashant/bin:/Users/prashant/gocode/bin PWD=/Users/prashant SHELL=/usr/local/bin/zsh...
It looks like setting `env` to `std` helps, I was able to get neovim successfully built. Here are gist-logs, https://gist.github.com/fadbef18771582062861 (compared to my previously failing build: https://gist.github.com/acabb834f7de2a4c3a64) Thanks for the...
I'm trying to use the ini support as a "default" file, where we enable a boolean flag, and need an easy way to disable it from the CLI. Using a...
Running into the same issue, it seems to focus the application rather than the window. I have this snippet which lets me choose a specific window to focus, but it...
I wasn't able to get `raise` then `focus` to work -- even with iTerm. Is there anything else needed before the `focus`?
I have seen cases where the `Foo` struct embeds `fx.In` directly, ```go type Foo struct { fx.In MyBar Bar MyBaz Baz MyQuux Quux } ``` That should work for structs...
While discussing this with @abhinav, one idea I had was to use an optional struct tag to tell `fx` what to log. E.g., if we had a helper that provides...
This is coming up in #697 as well, so I think this is something we should prioritize. Some more ideas: re: https://github.com/uber-go/fx/pull/697 - Caller skip (similar to zap), to indicate...