p-e-w / finalterm

At last – a modern terminal emulator (NO LONGER MAINTAINED)
http://finalterm.org
GNU General Public License v3.0
3.84k stars 179 forks source link

Hidden files not displaying with `ls -a` #338

Closed nashley closed 9 years ago

nashley commented 9 years ago

Hidden files or directories (i.e., those prefaced with a period) do not show up when ls -a is run unless there is a non-hidden file or folder in the same directory. Screenshot: screenshot from 2014-08-17 22 17 30 Screenshot when a file is added that does not start with a period: screenshot from 2014-08-17 22 20 00

p-e-w commented 9 years ago

Confirmed.

cuttlebit commented 9 years ago

The problem is in "data/Termlets/ls"

for filename in *; do

" * " only finds non-hidden files in current directory.

p-e-w commented 9 years ago

@Carnassial: While this would explain why hidden files do not have semantic menus attached to their filenames, it does not explain why they aren't even shown.

cuttlebit commented 9 years ago

Oh... Yes. Ignore my commit there. It's broken.

I think I know what's going on now, gonna do some testing.

cuttlebit commented 9 years ago

Sorry, check the last commit. Should be fixed now.

5_002

p-e-w commented 9 years ago

Fixed by @Carnassial.