An open API service indexing awesome lists of open source software.

https://github.com/ironcalc/TironCalc


https://github.com/ironcalc/TironCalc

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# TironCalc

[![Discord chat][discord-badge]][discord-url]

[discord-badge]: https://img.shields.io/discord/1206947691058171904.svg?logo=discord&style=flat-square
[discord-url]: https://discord.gg/zZYWfh3RHJ

TironCalc, or Tiron for friends, is a TUI (Terminal User Interface) for IronCalc. Based on [ratatui](https://github.com/ratatui-org/ratatui)

![TironCalc Screenshot](docs/screenshot.png)

## 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
```
- `Arrow Keys` to navigate cells
- `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
- `a` to go to the previous sheet
- `PgUp/PgDown` to navigate rows faster

## Inspiration

James Gosling of Java fame created [sc](https://en.wikipedia.org/wiki/Sc_(spreadsheet_calculator)) the spreadsheet calculator.

Andrés Martinelli has been maintaining [sc-im](https://github.com/andmarti1424/sc-im), the spreadsheet calculator improvised.

## See also

A really nice similar project

[SheetsUI](https://github.com/zaphar/sheetsui)