vim-crunch
vim-crunch copied to clipboard
A calculator inside Vim
Hello, Is it possible to add an option to sum the numbers in a column? Or maybe such a possibility already exists? Thanks.
The former is small and specific enough to be added to the latter, facilitating its installation.
I'd like to see 1234567890 instead of 1.23456789e9. is it possible?
default conversion of all numbers to floating point by appending `.0` to integers makes modular arithmetic fail, for example, `10 % 3` produces the error messages ```vim Errore/i eseguendo function...
e.g. Given: ``` let g:crunch_user_variables = {'pi':3.14159265359} ``` Then following occours. because in the second line the 2 is being prepended infront of the pi constant and not being multiplied...
Instead of `pow(2,3)`, could `vim-crunch` accept also the more common, and intuitive, expressions `2^3` or `2**3` to compute the cube of `2`?
According to `:help clipboard` (after the `Note`): ``` When the "unnamed" string is included in the 'clipboard' option, the unnamed register is the same as the "* register. Thus you...
In view of `help getregion()` on recent Vim, is the dependency on https://github.com/arecarn/selection.vim on those dispensable? There's the `CursorMoved` event to check for a selection mode that is not linewise...