dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 0e1026ec1b21109c67d1c2f823d3c1b20050f767
parent a34ff87c0eae59aa4729febe8add53bdd01505a0
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  8 Jul 2019 16:09:05 +0200

Add vsplit binding

Diffstat:
M.config/vis/visrc.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua @@ -95,6 +95,7 @@ vis.events.subscribe(vis.events.INIT, function() vis:map(vis.modes.NORMAL, '<F7>', ':!sent $vis_filepath &<Enter>') vis:map(vis.modes.NORMAL, '<Tab><Tab>', '<vis-window-next>') vis:map(vis.modes.NORMAL, leader..'<Tab>', ':prev<Enter>') + vis:map(vis.modes.NORMAL, leader..'%', ':vsplit<Enter>') vis:map(vis.modes.NORMAL, leader..',', ':fzfmru<Enter>') vis:map(vis.modes.NORMAL, '] ', function() vis:feedkeys('o<Escape><Up>') end)