Charles Nicholson

Results 101 comments of Charles Nicholson

@hkpeprah @sstallion any insights here? Henry's working with us; if you could give us any pointers we'd appreciate it!

I think this would be a very welcome feature, but it's not one that I need personally, so I'm not invested in building it myself. If anyone has the appetite...

Maybe something cheapo like this would work: Determine a multiplier of 10.0f or 0.1f based on initial condition of `0

Also make sure that there aren't any floating point numbers where successive multiplications of 0.1 or 10.0 won't eventually normalize it to `1

Either way this should do exactly what `%e` does but just pass base 16 to `npf__ftoa_rev` or `npf__etoa_rev` or whatever. `npf__ftoa_rev` shouldn't take a `base` if `npf__etoa_rev` ends up being...

This hit me as well, when I upgraded to the new neovim 0.7 release.

Rewriting my init code in the style of the updated homepage fixed it all; thanks for the pointer!

I'll take a shot at it sometime in the next few days; the tricky part is that breaking the float up into 3x integers (integer portion, fractional portion as an...

One nice thing about the current approach is that it doesn't actually do any floating point operations. Unfortunately, the 64-bit variables are very hard to get rid of. I did...

It's a garbage implementation, but if it works "well enough" i think it's straightforward to add rounding, and can use the powers-of-ten table trick to get rid of loops. I'm...