These are some guides for various use.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
759 B

7 months ago
8 months ago
8 months ago
7 months ago
  1. # SC-IM
  2. `sc-im` is a program to view and edit tables especially in csv-format.
  3. ## Setup
  4. ### Arch-Linux
  5. - `yay -S sc-im` - Install sc-im
  6. - `sc-im <insert-filename>.csv` - Edit files
  7. ## Usage
  8. `sc-im` uses vim keys to move.
  9. You can insert text to a cell with `\` and numbers using `=`.
  10. You can edit existing entries with `e` for text and `E` for numbers.
  11. You can delete (multiple (for example `3`) rows `dr`/`d3r`, yank rows `yr`/`y3r`.
  12. You can delete (multiple (for example `3`) columns `dc`/`d3c`, yank rows `yc`/`y3c`.
  13. You can insert new rows `ir`/`i3r` or columns `ic`/`i3c`.
  14. ### Special numbers
  15. There are some functions you can use when in numbers mode.
  16. - `=@sum(<start-cell>:<end-cell>)` - Summarize all number-entries in the range
  17. of given cells