Skip to content

Commit

Permalink
refactor: Replace deprecated function in evilline example(#1246)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanme5 authored Nov 1, 2024
1 parent b39f1f0 commit c561de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/evil_lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ ins_left {
function()
local msg = 'No Active Lsp'
local buf_ft = vim.api.nvim_buf_get_option(0, 'filetype')
local clients = vim.lsp.get_active_clients()
local clients = vim.lsp.get_clients()
if next(clients) == nil then
return msg
end
Expand Down

0 comments on commit c561de0

Please sign in to comment.