Skip to content

Commit

Permalink
feat: add support for stp files
Browse files Browse the repository at this point in the history
  • Loading branch information
adelarsq committed Apr 15, 2024
1 parent 0bb83a2 commit 7a59504
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog 🍁

## Version 0.113

- Add support for *.stp files.

## Version 0.112

- Add support for *.ebnf, *.socket and *.pid files.
Expand Down
2 changes: 2 additions & 0 deletions plugin/vim-emoji-icon-theme.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,7 @@ let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['snap'] = g:iconPackag
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['snoop'] = g:iconNetworkTrace " network file trace (Wireshark) and others
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['so'] = g:iconBinary
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['socket'] = g:iconNetwork
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['stp'] = g:icon3D
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['pid'] = g:iconBinary
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['sol'] = g:iconLanguage
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['spi'] = g:iconSpiral " Spiral language
Expand Down Expand Up @@ -1585,6 +1586,7 @@ if use then
imported.set_icon { snoop = {icon = vim.g.iconNetworkTrace, color = "#000000",name = "snoop" } }
imported.set_icon { so = {icon = vim.g.iconBinary, color = "#000000",name = "so" } }
imported.set_icon { socket = {icon = vim.g.iconNetwork, color = "#000000",name = "socket" } }
imported.set_icon { stp = {icon = vim.g.icon3D, color = "#000000",name = "stp" } }
imported.set_icon { pid = {icon = vim.g.iconBinary, color = "#000000",name = "pid" } }
imported.set_icon { sol = {icon = vim.g.iconLanguage, color = "#000000",name = "sol" } }
imported.set_icon { spi = {icon = vim.g.iconSpiral, color = "#000000",name = "spi" } }
Expand Down

0 comments on commit 7a59504

Please sign in to comment.