Commit: 6d912984f507606f28f032348edce1f37f45daa2
Parent: 918367feed0cb8046758fcac0f8b77102f58c662
Author: Randy Palamar
Date: Sat, 28 Aug 2021 16:31:59 -0600
bump vis config
* add a keybind to call furigana on text after cursor
* vis-spellcheck update
* build.lua fix that I forgot about
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.config/vis/build.lua b/.config/vis/build.lua
@@ -28,7 +28,7 @@ function build_files(win)
if method == nil then error() return end
vis:info(string.format('building \'%s\'', f))
- method(f, out)
+ method(f)
end
vis:map(vis.modes.NORMAL, ',c', build)
diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua
@@ -9,6 +9,7 @@ vis.events.subscribe(vis.events.INIT, function()
vis:command("set ai")
vis:command("map normal gq vip=<Escape>")
+ vis:command("map normal ,f v$:|furigana<Enter><Escape>")
vis:command("map visual ,s :|sort<Enter>")
end)