Add -a Option to list.lua #498
Open
Conversation
This PR simple adds a -a Option to list.lua which allows you to see hidden Files, even if the list.show_hidden setting is false.
This comment has been minimized.
This comment has been minimized.
KnightMiner
commented on src/main/resources/assets/computercraft/lua/rom/programs/list.lua
in a335dd5
Dec 4, 2017
This is minor, but |
This comment has been minimized.
This comment has been minimized.
Contributor
SquidDev
commented on src/main/resources/assets/computercraft/lua/rom/programs/list.lua
in a335dd5
Dec 4, 2017
I feel it'd be good to support local sDir = shell.dir()
local bShowHiddenOption = false
for i = 1, #tArgs do
if tArgs[i] == "-a" then
bShowHiddenOption = true
else
sDir = tArgs[i]
end
end |
What happens if you want to list files in the |
@apemanzilla I believe you can just do |
Can one of the admins verify this patch? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR simple adds a -a Option to list.lua which allows you to see hidden Files, even if the list.show_hidden setting is false.