an improved calc function would nice. e.g. cntrl-shift-C with "140e9*1.31/65e6 “ comes up blank… should be 2,821.xx
Just added a fix for the send to Google option (see here https://github.com/textmate/math.tmbundle/pull/1) which gets your answer correct.
On Tue, 31 Jul 2018 at 05:42 Tim Bates timothy.c.bates@gmail.com wrote:
an improved calc function would nice. e.g. cntrl-shift-C with "140e9*1.31/65e6 “ comes up blank… should be 2,821.xx
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
Many thanks George!
I didn’t realise the underlying service - nice!
t
On 1 Aug 2018, at 3:09 pm, George McGinley Smith george@gsgd.co.uk wrote:
Just added a fix for the send to Google option (see here https://github.com/textmate/math.tmbundle/pull/1 https://github.com/textmate/math.tmbundle/pull/1) which gets your answer correct.
On Tue, 31 Jul 2018 at 05:42 Tim Bates <timothy.c.bates@gmail.com mailto:timothy.c.bates@gmail.com> wrote: an improved calc function would nice. e.g. cntrl-shift-C with "140e9*1.31/65e6 “ comes up blank… should be 2,821.xx
I’ll merge the PR later today, though for scientific notation support using the native calculator (`bc`) would it be sufficient to do a regex replace on the input expression, for example:
perl -pe 's/(-?\d+)e(-?\d+)/(\1*10^\2)/gi' <<< 140e9*1.31/65e6|bc -l 2821.53846153846153846153
On 1 Aug 2018, at 8:44, Tim Bates wrote:
Many thanks George!
I didn’t realise the underlying service - nice!
t
On 1 Aug 2018, at 3:09 pm, George McGinley Smith george@gsgd.co.uk wrote:
Just added a fix for the send to Google option (see here https://github.com/textmate/math.tmbundle/pull/1 https://github.com/textmate/math.tmbundle/pull/1) which gets your answer correct.
On Tue, 31 Jul 2018 at 05:42 Tim Bates <timothy.c.bates@gmail.com mailto:timothy.c.bates@gmail.com> wrote: an improved calc function would nice. e.g. cntrl-shift-C with "140e9*1.31/65e6 “ comes up blank… should be 2,821.xx
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate