You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the pcall to H.filetype_match(). Reasoning: mini.icons should never fail...
This is what I'd expect, since H.filetype_match is used in other place. What made you not go this route?
2. Skip the call with aaa.<the_extension>, only test for ~/aaa.<the_extension>. Reasoning: vim.filetype.match will create an absolute path anyway...
I did think about this, but 1) the current aaa.ext works most of the time; 2) I am not confident that resolving ~/file is faster that resolving file (i.e. resolving ~ is faster than resolving current working directory).
Thanks for the PR! I've made some stylistic tweaks to make code more concise, have more direct "happy path", and with extra explanatory comment about why this is needed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolve #2455
Other approaches I considered:
mini.iconsshould never fail...aaa.<the_extension>, only test for~/aaa.<the_extension>. Reasoning:vim.filetype.matchwill create an absolute path anyway...