Skip to content

Commit c4b21b4

Browse files
committed
Convert DesignNotes to Markdown to fix display in GitHub.
1 parent bdcfca1 commit c4b21b4

File tree

1 file changed

+22
-23
lines changed

1 file changed

+22
-23
lines changed

DesignNotes.wiki DesignNotes.md

+22-23
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
= Design Notes =
1+
# Design Notes
22

33
This file is meant to document design decisions and algorithms inside vimwiki
44
which are too large for code comments, and not necessarily interesting to
55
users. Please create a new section to document each behavior.
66

7-
== Formatting tables ==
7+
## Formatting tables
88

99
In vimwiki, formatting tables occurs dynamically, when navigating between cells
1010
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
1414
this section, the original and the newer optimized algorithms of table
1515
formatting will be described and compared.
1616

17-
=== The older table formatting algorithm and why this is not optimal ===
17+
### The older table formatting algorithm and why this is not optimal
1818

1919
Let's consider a simple example. Open a new file, say _tmp.wiki_, and create a
2020
new table with command `VimwikiTable`. This should create a blank table.
2121

22-
{{{
22+
```
2323
| | | | | |
2424
|---|---|---|---|---|
2525
| | | | | |
26-
}}}
26+
```
2727

2828
Let's put the cursor in the first header column of the table, enter the Insert
2929
mode and type a name, say _Col1_. Then press _Tab_: the cursor will move to the
3030
second column of the header and the table will get aligned (in the context of
3131
the table formatting story, words _aligned_ and _formatted_ are considered as
3232
synonyms). Now the table looks as in the following snippet.
3333

34-
{{{
34+
```
3535
| Col1 | | | | |
3636
|------|---|---|---|---|
3737
| | | | | |
38-
}}}
38+
```
3939

4040
Then, when moving cursor to the first data row (i.e. to the third line of the
4141
table below the separator line) and typing anything here and there while
4242
navigating using _Tab_ or _Enter_ (pressing this creates a new row below the
4343
current row), the table shall keep formatting. Below is a result of such a
4444
random edit.
4545

46-
{{{
46+
```
4747
| Col1 | | | | |
4848
|------|-------|---|-------|----------|
4949
| | Data1 | | Data2 | |
5050
| | | | | New data |
51-
}}}
51+
```
5252

5353
The lowest row gets aligned when leaving the Insert mode. Let's copy _Data1_
5454
(using `viwy` or another keystroke) and paste it (using `p`) in the second data
5555
row of the first column. Now the table looks mis-aligned (as we did not enter
5656
the Insert mode).
5757

58-
{{{
58+
```
5959
| Col1 | | | | |
6060
|------|-------|---|-------|----------|
6161
| | Data1 | | Data2 | |
6262
| Data1 | | | | New data |
63-
}}}
63+
```
6464

6565
This is not a big problem though, because we can put the cursor at _any_ place
6666
in the table and press `gqq`: the table will get aligned.
6767

68-
{{{
68+
```
6969
| Col1 | | | | |
7070
|-------|-------|---|-------|----------|
7171
| | Data1 | | Data2 | |
7272
| Data1 | | | | New data |
73-
}}}
73+
```
7474

7575
Now let's make real problems! Move the cursor to the lowest row and copy it
7676
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
8383
calculate a new alignment. Moreover, by design it may happen even more than
8484
once per one press!
8585

86-
{{{vim
86+
```vim
8787
function! s:kbd_create_new_row(cols, goto_first)
8888
let cmd = "\<ESC>o".s:create_empty_row(a:cols)
8989
let cmd .= "\<ESC>:call vimwiki#tbl#format(line('.'))\<CR>"
@@ -98,7 +98,7 @@ function! s:kbd_create_new_row(cols, goto_first)
9898
9999
return cmd
100100
endfunction
101-
}}}
101+
```
102102

103103
Function `s:kbd_create_new_row()` is called when _Tab_ or _Enter_ get pressed.
104104
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
107107
whole table is called on all those multiple interleaves between the Insert and
108108
the Normal mode in `s:kbd_create_new_row` (notice `\<ESC>`, `o`, etc.).
109109

110-
=== The newer table formating algorithm ===
110+
### The newer table formating algorithm
111111

112112
The newer algorithm was introduced to struggle against performance issues when
113113
formatting large tables.
114114

115115
Let's take the table from the previous example in an intermediate state.
116116

117-
{{{
117+
```
118118
| Col1 | | | | |
119119
|------|-------|---|-------|----------|
120120
| | Data1 | | Data2 | |
121121
| Data1 | | | | New data |
122-
}}}
122+
```
123123

124124
Then move the cursor to the first data row, copy it with `yy`, go down to the
125125
mis-aligned line, and press `5p`. Now we have a slightly bigger mis-aligned
126126
table.
127127

128-
{{{
128+
```
129129
| Col1 | | | | |
130130
|------|-------|---|-------|----------|
131131
| | Data1 | | Data2 | |
@@ -135,14 +135,14 @@ table.
135135
| | Data1 | | Data2 | |
136136
| | Data1 | | Data2 | |
137137
| | Data1 | | Data2 | |
138-
}}}
138+
```
139139

140140
Go down to the lowest, the 7th, data row and press `gq1`. Nothing happened.
141141
Let's go to the second or the third data row and press `gq1` once again. Now
142142
the table gets aligned. Let's undo formatting with `u`, go to the fourth row,
143143
and press `gq1`. Now the table should look like in the following snippet.
144144

145-
{{{
145+
```
146146
| Col1 | | | | |
147147
|------|-------|---|-------|----------|
148148
| | Data1 | | Data2 | |
@@ -152,7 +152,7 @@ and press `gq1`. Now the table should look like in the following snippet.
152152
| | Data1 | | Data2 | |
153153
| | Data1 | | Data2 | |
154154
| | Data1 | | Data2 | |
155-
}}}
155+
```
156156

157157
What a peculiar command! Does using it make any sense? Not much, honestly.
158158
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
184184
enough to trigger the older algorithm and the whole table gets aligned. When
185185
partial formatting is not desirable, the whole table can be formatted by
186186
pressing `gqq` in the Normal mode.
187-

0 commit comments

Comments
 (0)