summaryrefslogtreecommitdiff
path: root/lua/warp/win_selectors/null.lua
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2024-03-12 23:04:21 +0000
committerJosh Rahm <rahm@google.com>2024-03-12 23:04:21 +0000
commitd7415ac09d7afecc430d64ea17b57ceab7432c2e (patch)
tree7ab43d8c002c7b31d119a9b5e5dfe67a2e164489 /lua/warp/win_selectors/null.lua
parentff00585c7c9e0cac8d1c75a8cb60fd82519b6856 (diff)
downloadnvim-warp-d7415ac09d7afecc430d64ea17b57ceab7432c2e.tar.gz
nvim-warp-d7415ac09d7afecc430d64ea17b57ceab7432c2e.tar.bz2
nvim-warp-d7415ac09d7afecc430d64ea17b57ceab7432c2e.zip
Big refactor to warp.
Now two lines are displayed for row-choosing. Made row-choosing modular as well.
Diffstat (limited to 'lua/warp/win_selectors/null.lua')
-rw-r--r--lua/warp/win_selectors/null.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/warp/win_selectors/null.lua b/lua/warp/win_selectors/null.lua
new file mode 100644
index 0000000..2d2a75f
--- /dev/null
+++ b/lua/warp/win_selectors/null.lua
@@ -0,0 +1,5 @@
+local M = {}
+
+M.select_win = function () return 0 end
+
+return M