fungl164
fungl164
This works on Yosemite + Chrome - Version 39.0.2171.95 ( see http://stackoverflow.com/a/24981514 ) > $ mkdir /tmp/pty.js > $ git clone https://github.com/chjj/pty.js.git /tmp/pty.js > $ vi /tmp/pty.js/src/unix/pty.cc replace line 39:...
@msanand I just noticed something peculiar in /tmp/tpy.js vs /tmp/pty.js. I suspect it's a simple typo on the command. Give this a try npm install -g /tmp/pty.js
For another representation that makes it clearer to me, I added this icon to my installation (based on Futura text, but could be any other font)... :) 
FYI running ```$ make``` on ~/.goenv yields the the following: ``` ✓ prints go-build version when '--version' argument is given ✗ {before,after}_install hooks get triggered when '--force' argument and version...
Found a temporary solution: ```bash $ export GOPKG=go1.15.6.linux-arm64.tar.gz $ wget https://golang.org/dl/$GOPKG $ tar -C ~/.goenv/versions/1.15.6 -xvf $GOPKG $ goenv global 1.15.6 && goenv rehash $ rm $GOPKG ```
Assuming following file can be added somewhere in the package (e.g. warnings.go), the only changes required to the base code are shown on the ```discovery.go``` diff below... warnings.go ```Go package...
@chriskolenko Thanks for this. I thought I'd expand to a super-hybrid handler that merges websockets, http and graphiQL onto a single handler for all based on your ideas. I'm sure...
@netpoetica might be late to the pic, but I have these set and working on Yosemite + Vim/MacVim. > set omnifunc=syntaxcomplete#Complete > let g:tern_map_keys=1 > let g:tern_show_argument_hints="on_hold" note the difference...
@netpoetica Check these out... > https://www.youtube.com/watch?v=kDdkfHWqVU0 > https://www.youtube.com/watch?v=TIE9ZOqlvFo you should be getting similar results as you would get from any other ide or code editor that uses ternjs in the...
Not tested but maybe this might work... ```JS if (poll) { // original handling if (typeof poll === 'number') { setInterval(() => this.$fetch(key), poll) } // additional handling in case...