summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-04-03 13:33:33 +0200
committerSimon Hauser <Simon-Hauser@outlook.de>2022-04-03 13:33:33 +0200
commit6e7ee3829225d5c97c1ebfff686050142ffe5867 (patch)
tree87504b1f83bd421cb7c7bf2a30be031cbad99537 /scripts
parentd38ad438f3bb4e3721b9964172c8c9d70d5d06a8 (diff)
chore: reformat with stylua 0.13
Diffstat (limited to 'scripts')
-rw-r--r--scripts/gendocs.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/gendocs.lua b/scripts/gendocs.lua
index 95f6ea6..7016147 100644
--- a/scripts/gendocs.lua
+++ b/scripts/gendocs.lua
@@ -1,8 +1,10 @@
-- Setup telescope with defaults
-if RELOAD then RELOAD('telescope') end
-require('telescope').setup()
+if RELOAD then
+ RELOAD "telescope"
+end
+require("telescope").setup()
-local docgen = require('docgen')
+local docgen = require "docgen"
local docs = {}
@@ -32,7 +34,7 @@ docs.test = function()
docgen.write(input_file, output_file_handle)
end
- output_file_handle:write(" vim:tw=78:ts=8:ft=help:norl:\n")
+ output_file_handle:write " vim:tw=78:ts=8:ft=help:norl:\n"
output_file_handle:close()
vim.cmd [[checktime]]
end