diff options
author | Josh Rahm <rahm@google.com> | 2024-03-12 23:04:21 +0000 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-03-12 23:04:21 +0000 |
commit | d7415ac09d7afecc430d64ea17b57ceab7432c2e (patch) | |
tree | 7ab43d8c002c7b31d119a9b5e5dfe67a2e164489 /lua/warp/row_selectors/null.lua | |
parent | ff00585c7c9e0cac8d1c75a8cb60fd82519b6856 (diff) | |
download | nvim-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/row_selectors/null.lua')
-rw-r--r-- | lua/warp/row_selectors/null.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/warp/row_selectors/null.lua b/lua/warp/row_selectors/null.lua new file mode 100644 index 0000000..8e8e9f5 --- /dev/null +++ b/lua/warp/row_selectors/null.lua @@ -0,0 +1,5 @@ +local M = {} + +M.read_row = function () return '.' end + +return M |