about summary refs log tree commit diff stats
path: root/code/keys.rb
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-06-22 00:21:01 +0200
committerhut <hut@lavabit.com>2009-06-22 00:21:01 +0200
commit9f55a155d241e102812ea6b5acf60f8f159c9e44 (patch)
tree385a6ca064acac849c282d5d4e8fadee4c1a5380 /code/keys.rb
parent1575c43aa3a2a8e6bba36d65920778ef52e7584d (diff)
downloadranger-9f55a155d241e102812ea6b5acf60f8f159c9e44.tar.gz
changed the place where default flags are specified
Diffstat (limited to 'code/keys.rb')
-rw-r--r--code/keys.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/keys.rb b/code/keys.rb
index 1b1d4fd6..ecad2eca 100644
--- a/code/keys.rb
+++ b/code/keys.rb
@@ -532,7 +532,7 @@ module Fm
 				enter_dir_safely(currentfile.path)
 			else
 				mode = @buffer == 'L' ? 1 : 0
-				Action.run(RunContext.new(getfiles, mode))
+				Action.run(RunContext.new(getfiles, mode, 'a'))
 			end
 
 		when /^[ri](\d*)([adetw]*)[ri]$/
n136'>136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225