File tree Expand file tree Collapse file tree 1 file changed +52
-12
lines changed Expand file tree Collapse file tree 1 file changed +52
-12
lines changed Original file line number Diff line number Diff line change @@ -18,25 +18,65 @@ plugins:
1818
1919## Getting Started
2020
21- ### Motion Diagrams {.row-span-2}
21+ ### Install Vim
22+ ``` bash
23+ sudo apt install vim
24+ ```
25+
26+ ### Create new file with Vim
27+
28+ ``` bash
29+ vim test.sh
30+ ```
31+
32+ Then press ``` i ``` to start insert text
33+
34+ Now write this centenses to start learning:
2235
2336``` bash
24- ▼/▶ Cursor ▽/▷ Target
37+ echo " A cheatsheet from quickref.me "
2538```
2639
27- #### Left-right motions
40+ After write Press ``` esc ``` key on keyboard
41+
42+ ### Motion Diagrams
43+
44+ ``` bash
45+ △\▽ Cursor target
46+ ```
47+
48+
49+ #### Left-right motions commands
50+
51+ Test commands by number orders:
2852
2953``` bash
30- ┌───────────── |
31- ├───────────── 0 $ ──────────────┐
32- │ ┌────────── ^ fe ────────┐ │
33- │ │ ┌─────── Fo te ───────┐│ │
34- │ │ │┌────── To 30| ───┐ ││ │
35- │ │ ││ ┌──── ge w ───┐ │ ││ │
36- │ │ ││ │ ┌── b e ─┐ │ │ ││ │
37- │ │ ││ │ │ ┌h l┐ │ │ │ ││ │
38- ▽ ▽ ▽▽ ▽ ▽ ▽▼ ▼▽ ▽ ▽ ▽ ▽▽ ▽
54+ ┌───────────────── 1- |
55+ ├───────────────── 2- 0
56+ │ ┌────────────── 3- ^
57+ │ │ ┌──────────── 4- fo
58+ │ │ │ ┌────── 5- th
59+ │ │ │ │ -------
60+ │ │ │ │┌───── 8- fe
61+ │ │ │ │| ┌─── 9- l
62+ │ │ │ │| | -------
63+ │ │ │ │| | 11- w
64+ │ │ │ │| | |
65+ │ │ │ │| | |
66+ ▽ ▽ ▽ ▽▽▽ ▽
3967 echo " A cheatsheet from quickref.me"
68+ △△ △ △ △△ △
69+ | | | | || |
70+ | | | | || 15- $ ┘
71+ | | | | | └─ 14- 30|
72+ | | | | └── 13- w
73+ | | | └───── 12- e
74+ | | |
75+ | | └────── 10- h
76+ | | -------
77+ | └───────── 6- ge
78+ └─────────── 7- b
79+
4080```
4181
4282#### Up-down motions
You can’t perform that action at this time.
0 commit comments