File tree Expand file tree Collapse file tree 7 files changed +38
-1
lines changed
Expand file tree Collapse file tree 7 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ DIRS_UNSORTED= rpi \
22 linux \
33 brave_browser \
44 c \
5- cpp
5+ cpp \
6+ vim
67
78DIRS =$(sort $(DIRS_UNSORTED ) )
89
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ make NOTE_NAME=c_notes -C c -f c.mk --no-print-directory
44make NOTE_NAME=cpp_notes -C cpp -f cpp.mk --no-print-directory
55make NOTE_NAME=linux_notes -C linux -f linux.mk --no-print-directory
66make 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ # AUTOGENERATED!! DO NOT EDIT
2+ include ../constants.mk
3+ include ../common.mk
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ # Vim Notes
2+
3+
4+ ## Show line numbers in vim
5+
6+ (from NORMAL mode, type - )
7+ ` :set number `
8+
You can’t perform that action at this time.
0 commit comments