buildCursorPosStr builds the cursor position string (without filter info now)
(row, column int)
| 12 | |
| 13 | // buildCursorPosStr builds the cursor position string (without filter info now) |
| 14 | func buildCursorPosStr(row, column int) string { |
| 15 | posStr := "Column Type: " + type2name(b.getColType(column)) + " | " + strconv.Itoa(row) + "," + strconv.Itoa(column) + " " |
| 16 | return posStr |
| 17 | } |
| 18 | |
| 19 | // buildFilterInfoStr builds the filter information string for the top strip |
| 20 | // Shows all active filters or current column filter when cursor is on a filtered column |
no test coverage detected