We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8223eb2 commit f233cb2Copy full SHA for f233cb2
1 file changed
lua/fzf-lua/rpc.lua
@@ -2,7 +2,8 @@
2
local uv = vim.uv or vim.loop
3
4
local _is_win = vim.fn.has("win32") == 1 or vim.fn.has("win64") == 1
5
-local _is_linux = vim.fn.has("linux") == 1
+local _is_linux = vim.fn.has("linux") == 1 and
6
+ (vim.fn.has("nvim-0.12") == 1 and vim.fn.has("android") == 0)
7
8
if vim.v.servername and #vim.v.servername > 0 then
9
pcall(vim.fn.serverstop, vim.v.servername)
0 commit comments