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
Perl modules end with the .pm extension. These are files imported by Perl scripts as objects. Most file managers I know display the same icon for .pm and .pl files.
I think we should not concern ourselves with the fact that plx is used in legacy code, given that a large portion of programmers interacting with perl are dealing with legacy code.
t is just perl code used for testing.
You are right about pod being documentation, but Plain Old Documentation(syntax used by pod files) is a sort of markup language often used inside of perl scripts instead of separate files. The perl interpreter ignores what is written with this syntax (similar to comments), hence .pod files are technically valid perl code. So it might make sense for them to have the same icon. Besides that, there isn't really another good alternative I can think of.
With regard to .xs files. These files allow perl to interact with C/C++ subroutines. It isn't really perl code, but the syntax is sort of like a combination of C and Perl. So I didn't give it the same icon. I think it is better to ignore xs files for now, because I couldn't find an icon that seems appropriate for those files.
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.
Perl modules end with the .pm extension. These are files imported by Perl scripts as objects. Most file managers I know display the same icon for .pm and .pl files.