1
- = Design Notes =
1
+ # Design Notes
2
2
3
3
This file is meant to document design decisions and algorithms inside vimwiki
4
4
which are too large for code comments, and not necessarily interesting to
5
5
users. Please create a new section to document each behavior.
6
6
7
- == Formatting tables ==
7
+ ## Formatting tables
8
8
9
9
In vimwiki, formatting tables occurs dynamically, when navigating between cells
10
10
and adding new rows in a table in the Insert mode, or statically, when pressing
@@ -14,63 +14,63 @@ leaving Insert mode, provided variable `g:vimwiki_table_auto_fmt` is set. In
14
14
this section, the original and the newer optimized algorithms of table
15
15
formatting will be described and compared.
16
16
17
- === The older table formatting algorithm and why this is not optimal ===
17
+ ### The older table formatting algorithm and why this is not optimal
18
18
19
19
Let's consider a simple example. Open a new file, say _ tmp.wiki_ , and create a
20
20
new table with command ` VimwikiTable ` . This should create a blank table.
21
21
22
- {{{
22
+ ```
23
23
| | | | | |
24
24
|---|---|---|---|---|
25
25
| | | | | |
26
- }}}
26
+ ```
27
27
28
28
Let's put the cursor in the first header column of the table, enter the Insert
29
29
mode and type a name, say _ Col1_ . Then press _ Tab_ : the cursor will move to the
30
30
second column of the header and the table will get aligned (in the context of
31
31
the table formatting story, words _ aligned_ and _ formatted_ are considered as
32
32
synonyms). Now the table looks as in the following snippet.
33
33
34
- {{{
34
+ ```
35
35
| Col1 | | | | |
36
36
|------|---|---|---|---|
37
37
| | | | | |
38
- }}}
38
+ ```
39
39
40
40
Then, when moving cursor to the first data row (i.e. to the third line of the
41
41
table below the separator line) and typing anything here and there while
42
42
navigating using _ Tab_ or _ Enter_ (pressing this creates a new row below the
43
43
current row), the table shall keep formatting. Below is a result of such a
44
44
random edit.
45
45
46
- {{{
46
+ ```
47
47
| Col1 | | | | |
48
48
|------|-------|---|-------|----------|
49
49
| | Data1 | | Data2 | |
50
50
| | | | | New data |
51
- }}}
51
+ ```
52
52
53
53
The lowest row gets aligned when leaving the Insert mode. Let's copy _ Data1_
54
54
(using ` viwy ` or another keystroke) and paste it (using ` p ` ) in the second data
55
55
row of the first column. Now the table looks mis-aligned (as we did not enter
56
56
the Insert mode).
57
57
58
- {{{
58
+ ```
59
59
| Col1 | | | | |
60
60
|------|-------|---|-------|----------|
61
61
| | Data1 | | Data2 | |
62
62
| Data1 | | | | New data |
63
- }}}
63
+ ```
64
64
65
65
This is not a big problem though, because we can put the cursor at _ any_ place
66
66
in the table and press ` gqq ` : the table will get aligned.
67
67
68
- {{{
68
+ ```
69
69
| Col1 | | | | |
70
70
|-------|-------|---|-------|----------|
71
71
| | Data1 | | Data2 | |
72
72
| Data1 | | | | New data |
73
- }}}
73
+ ```
74
74
75
75
Now let's make real problems! Move the cursor to the lowest row and copy it
76
76
with ` yy ` . Then 500-fold paste it with ` 500p ` . Now the table very long. Move
@@ -83,7 +83,7 @@ time _Tab_ or _Enter_ get pressed down, all rows in the table get visited to
83
83
calculate a new alignment. Moreover, by design it may happen even more than
84
84
once per one press!
85
85
86
- {{{ vim
86
+ ``` vim
87
87
function! s:kbd_create_new_row(cols, goto_first)
88
88
let cmd = "\<ESC>o".s:create_empty_row(a:cols)
89
89
let cmd .= "\<ESC>:call vimwiki#tbl#format(line('.'))\<CR>"
@@ -98,7 +98,7 @@ function! s:kbd_create_new_row(cols, goto_first)
98
98
99
99
return cmd
100
100
endfunction
101
- }}}
101
+ ```
102
102
103
103
Function ` s:kbd_create_new_row() ` is called when _ Tab_ or _ Enter_ get pressed.
104
104
Formatting of the whole table happens in function ` vimwiki#tbl#format() ` . But
@@ -107,25 +107,25 @@ variable `g:vimwiki_table_auto_fmt` is set. This means that formatting of the
107
107
whole table is called on all those multiple interleaves between the Insert and
108
108
the Normal mode in ` s:kbd_create_new_row ` (notice ` \<ESC> ` , ` o ` , etc.).
109
109
110
- === The newer table formating algorithm ===
110
+ ### The newer table formating algorithm
111
111
112
112
The newer algorithm was introduced to struggle against performance issues when
113
113
formatting large tables.
114
114
115
115
Let's take the table from the previous example in an intermediate state.
116
116
117
- {{{
117
+ ```
118
118
| Col1 | | | | |
119
119
|------|-------|---|-------|----------|
120
120
| | Data1 | | Data2 | |
121
121
| Data1 | | | | New data |
122
- }}}
122
+ ```
123
123
124
124
Then move the cursor to the first data row, copy it with ` yy ` , go down to the
125
125
mis-aligned line, and press ` 5p ` . Now we have a slightly bigger mis-aligned
126
126
table.
127
127
128
- {{{
128
+ ```
129
129
| Col1 | | | | |
130
130
|------|-------|---|-------|----------|
131
131
| | Data1 | | Data2 | |
@@ -135,14 +135,14 @@ table.
135
135
| | Data1 | | Data2 | |
136
136
| | Data1 | | Data2 | |
137
137
| | Data1 | | Data2 | |
138
- }}}
138
+ ```
139
139
140
140
Go down to the lowest, the 7th, data row and press ` gq1 ` . Nothing happened.
141
141
Let's go to the second or the third data row and press ` gq1 ` once again. Now
142
142
the table gets aligned. Let's undo formatting with ` u ` , go to the fourth row,
143
143
and press ` gq1 ` . Now the table should look like in the following snippet.
144
144
145
- {{{
145
+ ```
146
146
| Col1 | | | | |
147
147
|------|-------|---|-------|----------|
148
148
| | Data1 | | Data2 | |
@@ -152,7 +152,7 @@ and press `gq1`. Now the table should look like in the following snippet.
152
152
| | Data1 | | Data2 | |
153
153
| | Data1 | | Data2 | |
154
154
| | Data1 | | Data2 | |
155
- }}}
155
+ ```
156
156
157
157
What a peculiar command! Does using it make any sense? Not much, honestly.
158
158
Except it shows how the newer optimized table formatting algorithm works in the
@@ -184,4 +184,3 @@ viewport) until one of the being edited cells grows in length to a value big
184
184
enough to trigger the older algorithm and the whole table gets aligned. When
185
185
partial formatting is not desirable, the whole table can be formatted by
186
186
pressing ` gqq ` in the Normal mode.
187
-
0 commit comments