File tree Expand file tree Collapse file tree 3 files changed +139
-1
lines changed Expand file tree Collapse file tree 3 files changed +139
-1
lines changed Original file line number Diff line number Diff line change
1
+ 110
2
+
3
+ ## This project
4
+ tabular
5
+ texttable
6
+ TextTable
7
+ HTMLTable
8
+
9
+ ## Human names
10
+ Pennock
11
+ pennock
12
+ philpennock
13
+
14
+ ## Package-specific conceptual terms used in documentation, hypotheticals etc
15
+ AddContextualErrorList
16
+ ColumnTerminalCellWidth
17
+ ColumnTerminalCellWidthByName
18
+ fieldSplitter
19
+ Glyphs
20
+ InputWriter
21
+ IsUpdatedSince
22
+ NewTableWithHeaders
23
+ RuneCount
24
+ SelectByName
25
+ SetItem
26
+ yourStateId
27
+
28
+ ## Symbols from other packages used in comments but not in code
29
+ io
30
+
31
+ ## Tech abuse of English
32
+ auth/S
33
+ conf
34
+ config/S
35
+ decr
36
+ demultiplex/DGRS
37
+ dir/S
38
+ dup
39
+ incr
40
+ iterable/S
41
+ lookups
42
+ mutator/S
43
+ nocolor
44
+ num/S
45
+ PKI
46
+ pki
47
+ prepend/S
48
+ priv/S
49
+ reflow/DGS
50
+ renderer/AS
51
+ repo/S
52
+ respawn/DGS
53
+ signalled
54
+ unshare/DS
55
+
56
+ foo
57
+ bar
58
+ baz
59
+ foobar
60
+ frob
61
+
62
+ ## Common terms in (Go) development
63
+ automount/S
64
+ backend/S
65
+ configmap/S
66
+ env/S
67
+ environ/S
68
+ fd_unix
69
+ filesystem/S
70
+ golint
71
+ homedir/S
72
+ hostname/S
73
+ hostnames
74
+ jitter/CGS
75
+ middleware/S
76
+ namespace/DS
77
+ netFD
78
+ param/S
79
+ pidfile/S
80
+ privkey/S
81
+ pubkey/S
82
+ semver
83
+ slowloris
84
+ stdlib
85
+ syscall/S
86
+ userid/S
87
+ uuid/S
88
+ waitgroup/S
89
+ webserver/S
90
+ ztypes_
91
+
92
+ ## Terms I looked up to find the consensus tech spelling
93
+ loggable
94
+
95
+ ## Unix commands and terms
96
+
97
+ ## OSes, Filetypes, etc
98
+ IPv4
99
+ IPv6
100
+ v0
101
+ v1
102
+ v2
103
+ v3
104
+ v4
105
+ v5
106
+ v6
107
+ html
108
+ md
109
+ txt
110
+ xhtml
111
+ www
112
+
113
+ ## Commands, software packages (non-Go)
114
+
115
+ ## Other tools and packages
116
+
117
+ ## Other English dialects
118
+ colour
119
+ humour
120
+ iff
121
+ ## Other languages leaking in (eg, Dutch acronyms)
122
+ ipv
123
+
124
+ ## Units and abuse of numbers
125
+ go1
126
+ go2
127
+ c1
128
+ c2
129
+ c3
130
+ c4
131
+
132
+ ## Style guide of "e.g." is too ancient, etc.
133
+ eg
134
+ nb
135
+ pre
136
+ rfcFOO
Original file line number Diff line number Diff line change @@ -8,3 +8,5 @@ Ensure that headers don't count.
8
8
Do we have sub-headers or super-headers of N cell width?
9
9
10
10
Should Caption move from being purely HTML into a generic table concept, eg, with overlay on the first line of the table?
11
+
12
+ Add AddTitle
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ func (c Cell) Lines() []string {
137
137
138
138
// TerminalCellWidth returns the number of terminal cells which we believe
139
139
// are necessary to render the contents of the object stored in the cell.
140
- // This is overriden by a TerminalCellWidth method on the object being stored.
140
+ // This is overridden by a TerminalCellWidth method on the object being stored.
141
141
// To a first approximation, this is how many runes are in a cell, but we
142
142
// handle combining characters, wide characters, etc.
143
143
func (c Cell ) TerminalCellWidth () int {
You can’t perform that action at this time.
0 commit comments