We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b8ce94 commit 423f183Copy full SHA for 423f183
.gitignore
@@ -0,0 +1 @@
1
+/diff.html
.markdownlint.yaml
@@ -0,0 +1,2 @@
+---
2
+MD033: false
scripts/generate-diff.html.vim
@@ -0,0 +1,17 @@
+#!/usr/bin/env -S vi -u
+set runtimepath+=.
3
+filetype on
4
+edit examples/main.cpp
5
+Insights!
6
+augroup init
7
+ autocmd!
8
+ autocmd VimEnter * call s:init()
9
+augroup END
10
+
11
+function! s:init() abort
12
+ TOhtml
13
+ " delete the last blank line
14
+ $delete
15
+ saveas! diff.html
16
+ qall
17
+endfunction
0 commit comments