diff options
author | hut <hut@lavabit.com> | 2009-06-29 01:51:18 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-29 01:51:18 +0200 |
commit | c49abf59cbd2ab07208de28acb975bc524f17ee9 (patch) | |
tree | d2e8b6efbda090140b7e8d491b9a546a766044d4 | |
parent | a93af1cd059935e2103c38b9a2440dcd5d318e6c (diff) | |
download | ranger-c49abf59cbd2ab07208de28acb975bc524f17ee9.tar.gz |
new option 'preview'. better alignment of rows.
-rw-r--r-- | code/draw.rb | 38 | ||||
-rw-r--r-- | code/fm.rb | 1 | ||||
-rw-r--r-- | code/keys.rb | 3 |
3 files changed, 31 insertions, 11 deletions
diff --git a/code/draw.rb b/code/draw.rb index 693b941b..cd12770f 100644 --- a/code/draw.rb +++ b/code/draw.rb @@ -5,7 +5,7 @@ module Fm def column_put_file(n, file) i = 0 - if OPTIONS['filepreview'] and file.path !~ DONT_PREVIEW_THESE_FILES + if OPTIONS['preview'] and OPTIONS['filepreview'] and file.path !~ DONT_PREVIEW_THESE_FILES m = lines - 2 attr_set(Color.base) left, wid = get_boundaries(n) @@ -157,11 +157,25 @@ module Fm when 1 q = cols / 8 - return q, q + if !OPTIONS['preview']# or (!OPTIONS['filepreview'] and !currentfile.dir?) + return q, 2*q +# elsif currentfile.path != DONT_PREVIEW_THESE_FILES +# return q, 2*q + else + return q, q + end when 2 - q = cols / 4 - w = @path.last.width.limit(cols/2, cols/8) + if !OPTIONS['preview'] + q = cols * 0.375 - 1 + w = @path.last.width.limit(cols * 0.625, cols/8) + elsif currentfile.path =~ DONT_PREVIEW_THESE_FILES or (!OPTIONS['filepreview'] and !currentfile.dir?) + q = cols / 4 + w = @path.last.width.limit(cols * 0.75, cols/8) + else + q = cols / 4 + w = @path.last.width.limit(cols/2, cols/8) + end return q, w when 3 @@ -234,10 +248,14 @@ module Fm # bold false begin - if cf.dir? - put_directory(3, @dirs[cf.path]) - elsif cf.file? - column_put_file(3, cf) + if OPTIONS['preview'] + if cf.dir? + put_directory(3, @dirs[cf.path]) + elsif cf.file? + column_put_file(3, cf) + else + column_clear(3) + end else column_clear(3) end @@ -264,10 +282,8 @@ module Fm when 'S' puti btm, "Sort by (n)ame (s)ize (m)time (c)time (CAPITAL:reversed)" when 't' - puti btm, "Toggle (h)idden_files (d)irs_first (c)olor (f)ilepreview" + puti btm, "Toggle (h)idden_files (d)irs_first (c)olor (f)ilepreview (p)review" else -# log(@pwd) -# log "Buffer: #{@buffer}" attr_set(Color.base) attr_set(Color.info) puti btm, "#@buffer #{@pwd.file_size.bytes(false)}, #{@pwd.free_space.bytes(false)} free, #{@pwd.size}, #{@pwd.pos+1} ".rjust(cols) diff --git a/code/fm.rb b/code/fm.rb index 54608f09..91b037a1 100644 --- a/code/fm.rb +++ b/code/fm.rb @@ -7,6 +7,7 @@ OPTIONS = { 'sort_reverse' => false, 'color' => true, 'filepreview' => true, + 'preview' => true, } module Fm diff --git a/code/keys.rb b/code/keys.rb index 76681cf9..a048f07d 100644 --- a/code/keys.rb +++ b/code/keys.rb @@ -378,6 +378,9 @@ module Fm end end + when 'tp' + OPTIONS['preview'] ^= true + when 'tc' OPTIONS['color'] ^= true |