Jay Pratt
Jay Pratt
Currently its not obvious that there is an option for turning off the folding that vim2hs uses, this means that users have to unfold things themselves even in small files....
Might be able to make use of something similar to the following to get around this but I'm not sure about backwards compatability. ``` print ''.join('{:02x}'.format(x) for x in os.urandom(40))...
I feel that, at least for some code, Hdevtools should be able to work out the type of the relevant value/variable without all of the code needing to be able...
This happens on first use and doesn't echo anything to terminal. Can we a) get this to print something and b) support neovim's async functionality to stop this from halting...
I've been trying to use ncurses to track what keys are being pressed in the terminal (I've been playing with making a terminal based roguelike) however I can't find a...
``` let a = {}; a; ``` Shows `[Object object]` ``` let a = {foo: 3}; a; ``` Shows `{ foo: 3, }` It would be worth considering showing `{}`...
I've tried to download the Mac OS X 32/64-bit versions of Clippy.desktop but have not been able to decompress them with Finder. If I decompress using terminal's unzip command I...
Seems the chips functionality hasn't been brought over to scss, maybe there's something I don't know about how to import it into Meteor. Steps to recreate: ```git clone https://github.com/Cypher1/Chips_test``` or...
DatabaseImpl.kt currently maps bigint to text for storage and retrieval which will cause the bigints to use lexicographic ordering rather than numeric ordering.
Fixes path handling for the command `git-hub-browse` to use relative paths. This enables opening the current working directory or a file in a directory without manually specifying the file path...