Skip to content

Commit

Permalink
fix(ui)!: change filetype from "mason.nvim" to "mason"
Browse files Browse the repository at this point in the history
Dots in 'filetype' are used for composite filetypes. By using
`mason.nvim` as filetype, we're effectively assigning to filetypes:
`mason` and `nvim`.
  • Loading branch information
williamboman committed Aug 20, 2022
1 parent 5dbb22a commit 84830f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/mason/ui/instance.lua
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ local function remove(list, item)
return list
end

local window = display.new_view_only_win("mason.nvim", "mason.nvim")
local window = display.new_view_only_win("mason.nvim", "mason")
local packages = _.sort_by(_.prop "name", registry.get_all_packages())

window.view(
Expand Down

0 comments on commit 84830f4

Please sign in to comment.