Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/telescope/_extensions/ui-select.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ return require("telescope").register_extension {
}
for idx, item in ipairs(items) do
local client_id, title
if vim.version and vim.version.cmp(vim.version(), vim.version.parse "0.10-dev") >= 0 then
if vim.version().minor > 10 then

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This wont work if 1.0 gets released!

client_id = item.ctx.client_id
title = item.action.title
else
Expand Down