-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcells.1
More file actions
81 lines (81 loc) · 1.44 KB
/
cells.1
File metadata and controls
81 lines (81 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.TH CELLS 1 cells
.SH NAME
cells \- vi-like spreadsheets
.SH SYNOPSIS
.B cells
.RB [ filename ]
.SH DESCRIPTION
cells a C++ implementation a interactive terminal-based (TUI) spreadsheet utility.
The input and the interface is inspierd by vi(1) text editor.
.P
There are three modes of operation;
normal mode for spreadsheet navigation and cell selection,
input mode for value insertion and
command mode for saving/loading/exiting.
Upon startup cells enters normal mode, which is the interactive mode;
meaning that each kbd key input results in action.
Other modes can be reached by issuing specific key command.
.P
When in distress type `:q' to exit.
.SH OPTIONS
.TP
.B filename
initial filename; if the file exists it will be read upon startup
.SH USAGE
.SS NORMAL mode commands
.TP
.B j
move cursor down
.TP
.B k
move cursor up
.TP
.B h
move cursor left
.TP
.B l
move cursor right
.TP
.B J
extend vertical selection
.TP
.B K
retract vertical selection
.TP
.B H
retract horizontal selection
.TP
.B L
extend horizontal selection
.TP
.B g
jump to cell `A1'
.TP
.B G
jump to bottom-right view range corner cell
.TP
.B :
enter command mode
.TP
.B i
enter input mode
.TP
.B d
delete selected range of cells
.SS COMMAND mode commands
.TP
.B q
exit
.TP
.B f
.RB < filename >
set the filename of the current sheet
.TP
.B w
write sheet to file designated by currently set filename
.TP
.B r
read sheet from file designated by currently set filename
.SH SEE ALSO
.BR vi (1),
.BR vim (1)