Skip to content

Commit 204824f

Browse files
committed
add vim notes
1 parent c2c68f5 commit 204824f

File tree

7 files changed

+38
-1
lines changed

7 files changed

+38
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ DIRS_UNSORTED= rpi \
22
linux \
33
brave_browser \
44
c \
5-
cpp
5+
cpp \
6+
vim
67

78
DIRS=$(sort $(DIRS_UNSORTED))
89

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ List
99
- [cpp](cpp/cpp_notes.md)
1010
- [linux](linux/linux_notes.md)
1111
- [rpi](rpi/rpi_notes.md)
12+
- [vim](vim/vim_notes.md)
1213

build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ make NOTE_NAME=c_notes -C c -f c.mk --no-print-directory
44
make NOTE_NAME=cpp_notes -C cpp -f cpp.mk --no-print-directory
55
make NOTE_NAME=linux_notes -C linux -f linux.mk --no-print-directory
66
make NOTE_NAME=rpi_notes -C rpi -f rpi.mk --no-print-directory
7+
make NOTE_NAME=vim_notes -C vim -f vim.mk --no-print-directory

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<li><a href="cpp/cpp_notes.html">cpp</a></li>
3535
<li><a href="linux/linux_notes.html">linux</a></li>
3636
<li><a href="rpi/rpi_notes.html">rpi</a></li>
37+
<li><a href="vim/vim_notes.html">vim</a></li>
3738
</ul>
3839
</body>
3940
</html>

vim/vim.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# AUTOGENERATED!! DO NOT EDIT
2+
include ../constants.mk
3+
include ../common.mk

vim/vim_notes.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width,initial-scale=1" />
6+
<meta name="author" content="devpogi" />
7+
<link rel="stylesheet" href="../style.css" />
8+
<title>devpogi notes</title>
9+
</head>
10+
<body>
11+
<header>
12+
<a href="../index.html">Home</a>
13+
</header>
14+
15+
<h1 id="vim-notes">Vim Notes</h1>
16+
17+
<h2 id="show-line-numbers-in-vim">Show line numbers in vim</h2>
18+
19+
<p>(from NORMAL mode, type - )<br/>
20+
<code>:set number</code></p>
21+
</body>
22+
</html>

vim/vim_notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Vim Notes
2+
3+
4+
## Show line numbers in vim
5+
6+
(from NORMAL mode, type - )
7+
`:set number`
8+

0 commit comments

Comments
 (0)