diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-03-04 18:26:54 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-03-04 18:26:54 +0100 |
| commit | b97c6d29b6a1c66c2596033cd255d6803939aba0 (patch) | |
| tree | 4d0f68ad1f76e7e94214a18281d3419d5ffff591 /lua/basic_map.lua | |
| parent | 54dd1d2bf9a6cbfbd754e1e53fdda55f3acbbc15 (diff) | |
| download | vis-b97c6d29b6a1c66c2596033cd255d6803939aba0.tar.gz vis-b97c6d29b6a1c66c2596033cd255d6803939aba0.tar.xz | |
test/lua: convert tests to busted infrastructure
Diffstat (limited to 'lua/basic_map.lua')
| -rw-r--r-- | lua/basic_map.lua | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lua/basic_map.lua b/lua/basic_map.lua deleted file mode 100644 index 2d955e2..0000000 --- a/lua/basic_map.lua +++ /dev/null @@ -1,24 +0,0 @@ -vis:map(vis.modes.NORMAL, "K", function() - vis:feedkeys("iNormal Mode<Enter><Escape>") -end) -vis:map(vis.modes.INSERT, "K", function() - vis:feedkeys("Insert Mode<Enter><Escape>") -end) -vis:map(vis.modes.VISUAL, "K", function() - vis:feedkeys("<Escape>iVisual Mode<Enter><Escape>") -end) -vis:map(vis.modes.VISUAL_LINE, "K", function() - vis:feedkeys("<Escape>iVisual Line Mode<Enter><Escape>") -end) -vis:map(vis.modes.REPLACE, "K", function() - vis:feedkeys("Replace Mode<Enter><Escape>") -end) - -vis:feedkeys("K") -vis:feedkeys("iK") -vis:feedkeys("vK") -vis:feedkeys("VK") -vis:feedkeys("RK") -vis:feedkeys("dd") - -vis:command("w! basic_map.out")
\ No newline at end of file |
