SES: Simple Emacs Spreadsheet
1–10 of 27 posts
Re: SES: Simple Emacs Spreadsheet
#2Cool! Is there anything roughly equivalent for Vim? The closest I could find is vim-table-mode: https://github.com/dhruvasagar/vim-table-mode.
Re: SES: Simple Emacs Spreadsheet
#3That's actually really freaking cool. I was hoping that the native file format would be just a simple csv/tsv or something, but no such luck. But there is an "export as tab separated" function.
Re: SES: Simple Emacs Spreadsheet
#4These days one can use org-mode tables for quite a bit of spreadsheet stuff.
Re: SES: Simple Emacs Spreadsheet
#5Cool! Is there anything roughly equivalent for Vim? The closest I could find is vim-table-mode: https://github.com/dhruvasagar/vim-table-mode .
The closest approximation is probably gritting your teeth, installing evil-mode, and using Emacs.
Re: SES: Simple Emacs Spreadsheet
#6"Immune to viruses in spreadsheet files."
I find this claim dubious.
Re: SES: Simple Emacs Spreadsheet
#7"Immune to viruses in spreadsheet files." I find this claim dubious.
Because?
Re: SES: Simple Emacs Spreadsheet
#8I used SES when adding a matrix editor to gnu-apl-mode. When editing a matrix, it opens it as a SES document and when closing it it automatically updates the underlying variable.
You can see it in use here: https://www.youtube.com/watch?v=yP4A5CKITnM
Re: SES: Simple Emacs Spreadsheet
#9"Immune to viruses in spreadsheet files." I find this claim dubious.
Because?
Elsewhere in the manual it seems to imply that formulas can include arbitrary Emacs Lisp functions, which would make it quite easy to implement a virus as there appears to be no sandboxing. What it probably means is that viruses written for other spreadsheet implementations won't work on it.
Edit: never mind; I read further and it does do some sandboxing based on the same whitelisting principles as directory-local variable settings. Very clever.
Re: SES: Simple Emacs Spreadsheet
#10This looks interesting, but what I would like to see is good integration with org, org tables, and org babel.