Files
IronCalc/tironcalc/README.md
2024-06-13 08:04:29 +02:00

1.2 KiB

TironCalc

Discord chat

TironCalc, or Tiron for friends, is a TUI (Terminal User Interface) for IronCalc. Based on ratatui

TironCalc Screenshot

Build

cargo build --release

You will find the binary at ./target/release/tiron.

Documentation

Start empty project:

$ tiron

Load an existing Excel file:

$ tiron example.xlsx
  • e to edit a cell and enter the value or formula.
  • q to quit and save
  • + to add a sheet
  • s to go to the next sheet
  • PgUp/PgDown to navigate rows faster
  • u undo changes
  • U redo changes
  • r insert row
  • c insert column
  • C delete column
  • R delete row
  • `

Inspiration

James Gosling of Java fame created sc the spreadsheet calculator.

Andrés Martinelli has been maintaining sc-im, the spreadsheet calculator improvised.