From 1c98ff60a142bb84865119be0348e6a7b58e6c78 Mon Sep 17 00:00:00 2001 From: ZHENG PiaoDan Date: Tue, 17 May 2022 16:20:48 +0800 Subject: [PATCH] fzf: Fix jumping to note with spaces in filename (#48) --- lua/zk/pickers/fzf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/zk/pickers/fzf.lua b/lua/zk/pickers/fzf.lua index 23c3fe4..f695d5c 100644 --- a/lua/zk/pickers/fzf.lua +++ b/lua/zk/pickers/fzf.lua @@ -1,6 +1,6 @@ local M = {} -local delimiter = "\x01 " +local delimiter = "\x01" -- we want can't do vim.fn["fzf#wrap"] because the sink/sinklist funcrefs -- are reset to vim.NIL when they are converted to Lua