Kyle MacFarlane

Results 12 issues of Kyle MacFarlane

If nvim-qt is the default and you double click to open a file the pwd will be set correctly. However if you right click on a file and use "open...

windows

I turned on debug mode and added `new Date().getTime()` to the start of all the `console.info` in the javascript and IE9 is spitting out the following: ``` debugMode : ,true...

When you read files in browsers with native support for FileReader then the result is one long string. However when using this polyfill newlines are inserted every 76 characters. This...

First of all, you can't supply a custom accept value option to `fileReader()` because like 48 is wrong (https://github.com/Jahdrien/FileReader/blob/master/jquery.FileReader.js#L48). Obviously the final value should be `options.accept` and not `options.multiple`. In...

Lines 86-87 (https://github.com/Jahdrien/FileReader/blob/master/jquery.FileReader.js#L86-87) are required with Safari (on Windows at least) but for some reason they are currently commented out. Uncommenting them doesn't seem to break any other browser. Without...

When you scroll sticky subheaders in a browser that doesn't support position sticky (e.g. Chrome = 56, Firefox, etc) there is no shadow. The bug is evident in the demos:...

ui: CSS
hotlist: animations
ux: polish
P3: important

Hover doesn't work on elements inserted after Selectivizr has run. Deleting the whole hover case fixed the issue for my circumstances but is obviously not the proper solution. You can...

Even with the html5 shiv you can't style the new HTML5 inputs in IE7 with attribute selectors (e.g. `[type="number"]`). Presumably IE7 is setting them to `type="text"` before the styles are...

This includes two fixes. 1) The current SID is now thread local. 2) More sensible behaviour if for some reason autocommit is off but this decorator is in use. When...

With the following block: ``` @property def test(self): pass ``` This plugin folds it like: ``` @property +--- 2 lines def test(self):--------------- ``` But python-mode folds it like: ``` def...

enhancement
need-opinions