about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-11-09 09:38:54 -0800
committerKartik Agaram <vc@akkartik.com>2021-11-09 09:38:54 -0800
commit1f9b16680f1190a7be4098d61ed2ef74b1906b79 (patch)
tree06cd18714b80a84f50e0880a06c12920af6eef70 /tools
parent53d69dd1c5707a1cddd5c2ca6827b9a517659eeb (diff)
downloadmu-1f9b16680f1190a7be4098d61ed2ef74b1906b79.tar.gz
.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html58
1 files changed, 1 insertions, 57 deletions
diff --git a/tools/update_html b/tools/update_html
index 8110b010..5f7c2c90 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -19,7 +19,7 @@ process() {
 URL_BASE='https://github.com/akkartik/mu/blob/main'
 
 convert_html() {
-  vim -c "set number" -c TOhtml -c write -c qall $1
+  vim -u $MYVIM/vimrc.vim -c "set number" -c TOhtml -c write -c qall $1
 
   sed -i 's,<title>.*/mu/,<title>Mu - ,' $1.html
   sed -i 's,\.html</title>,</title>,' $1.html
@@ -74,60 +74,4 @@ do
   process $f
 done
 
-( cd linux
-  ctags -x [0-9]*.subx [0-9]*.mu  > /tmp/tags
-)
-for f in linux/[0-9]*.subx linux/[0-9]*.mu
-do
-  process $f
-done
-
-for f in linux/[^0-9]*.subx linux/[^0-9]*.mu
-do
-  ( cd $(dirname $f)
-    ctags -x [0-9]*.subx [0-9]*.mu $(basename $f)  > /tmp/tags
-  )
-  process $f
-done
-
-for f in linux/apps/*.subx linux/apps/*.mu
-do
-  ( cd $(dirname $f)
-    ctags -x ../[0-9]*.subx ../[0-9]*.mu $(basename $f) > /tmp/tags
-  )
-  process $f
-done
-
-for f in linux/apps/advent2020/*.mu linux/apps/advent2017/*.mu
-do
-  ( cd $(dirname $f)
-    ctags -x ../../[0-9]*.subx ../../[0-9]*.mu $(basename $f) > /tmp/tags
-  )
-  process $f
-done
-
-( cd linux/tile
-  ctags -x ../[0-9]*.subx ../[0-9]*.mu *.mu > /tmp/tags
-)
-for f in linux/tile/*.mu
-do
-  process $f
-done
-
-( cd linux/apps/raytracing
-  ctags -x ../../[0-9]*.subx ../../[0-9]*.mu *.mu > /tmp/tags
-)
-for f in linux/apps/raytracing/*.mu
-do
-  process $f
-done
-
-( cd linux/bootstrap
-  ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
-)
-for f in linux/bootstrap/*.cc
-do
-  process $f
-done
-
 rm /tmp/tags