Is there a complete overview of all icons in mini.icons available somewhere? #1732
-
Contributing guidelines
Module(s)mini.icons QuestionIs there a complete overview of all the mini.icons available somewhere? For instance, here is an overview of all atom material icons: https://plugins.jetbrains.com/plugin/10044-atom-material-icons |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Kind of, but depends on what is meant by "overview". Here is the part of source code that contains all built-in icon definitions. To get this programmatically, there is Note, that both 'file' or 'extension' categories use fallback to matched filetype which means that actual coverage in these categories is much larger. |
Beta Was this translation helpful? Give feedback.
Kind of, but depends on what is meant by "overview". Here is the part of source code that contains all built-in icon definitions.
To get this programmatically, there is
list()
to list all available icons for specific category andget()
to get the data. For example, here is how to see all built-in LSP icons and their highlight group:=vim.tbl_map(function(name) return { name, MiniIcons.get('lsp', name) } end, MiniIcons.list('lsp'))
.Note, that both 'file' or 'extension' categories use fallback to matched filetype which means that actual coverage in these categories is much larger.