diff options
author | hut <hut@lavabit.com> | 2009-07-22 00:07:49 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-07-22 00:07:49 +0200 |
commit | 7fbcb2dc05a5bd4a2dbe9a8f9096292560f798d8 (patch) | |
tree | e804b62891121bb966dc67c6baa2fa6fd641d752 | |
parent | bcb6a3a42bf274e730f8297b55a87ffabd42e438 (diff) | |
download | ranger-7fbcb2dc05a5bd4a2dbe9a8f9096292560f798d8.tar.gz |
fixed [i] key
-rw-r--r-- | code/keys.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/keys.rb b/code/keys.rb index 7b675c3a..6c2b275a 100644 --- a/code/keys.rb +++ b/code/keys.rb @@ -233,7 +233,7 @@ module Fm enter_dir_safely(currentfile.path) else mode = @buffer =~ /[LI]/ ? 1 : 0 - flags = @buffer =~ /[lL]/ ? 'a' : '' + flags = @buffer =~ /[lL]/ ? 'a' : 'A' Action.run(RunContext.new(getfiles, mode, flags)) end |