diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | ranger/defaults/options.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO index f655a936..44de45aa 100644 --- a/TODO +++ b/TODO @@ -68,6 +68,7 @@ Bugs ( ) #60 10/02/05 utf support improvable (X) #62 10/02/15 curs_set can raise an exception (X) #65 10/02/16 "source ranger ranger some/file.txt" shouldn't cd after exit + ( ) #67 10/03/08 terminal title in tty Ideas diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py index 690296f0..139cda88 100644 --- a/ranger/defaults/options.py +++ b/ranger/defaults/options.py @@ -42,4 +42,5 @@ update_title = False show_cursor = False -hidden_filter = regexp(r'^\.|~$|\.(:?pyc|pyo|bak|swp)$') +hidden_filter = regexp( + r'lost\+found|^\.|~$|\.(:?pyc|pyo|bak|swp)$') |