rtfm-filemanager 1.7.4 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rtfm +17 -7
  3. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4bf04ac71f0e3cfc2c028dfc50ed8db7c85855a5c1292b3ae3f5f1f3ae1f2cfa
4
- data.tar.gz: 58871496975eac0839a8b43793b6fc75303705754fcfce5dd362f4b9dff9b37f
3
+ metadata.gz: 1a5fdd577ea09bf7b15b8f6e13dc554ac9db1b8643d39ad64091d1db3ce550ff
4
+ data.tar.gz: a2747f9fb64d1b841a79598016d8b6b659cf386ecc2b6f49bb375fd948d4a174
5
5
  SHA512:
6
- metadata.gz: 83160f2faa5b44caca7df16b0b2e6fafdc043da42eb376db0c1ec28e3cc38330aa53ff1d803e2bca64a0912528b5f41fbe51c976b7a02b9cca1a495591115932
7
- data.tar.gz: 27264dc09670b0b5fbb031cd595b85eca494d72183003628e97a32319ed43049a8add382ce320e7796696d6c4b80e0f559c9f9e31ac9cd501db9324d8229a00a
6
+ metadata.gz: b4952148b138ccea17ef1d3834e378acbb3aa275ed580343c02ea5566f07f09cb92373dbd05d23a7b3395fe0196bf48dbcf9aa0b714cda6d2d07712d8c9b4696
7
+ data.tar.gz: 9f33313d3e6d14ff4c76afc808b7c3f429b8bf1eefe928fccb8ccd5e756f5f12640219750b15f547f7e7b8627e8c5aa2b1c5f10bc3844672fdb657ffb0099104
data/bin/rtfm CHANGED
@@ -46,6 +46,7 @@ JUMPING AND MARKS
46
46
  Press '-' and a letter to delete that mark
47
47
  M = Show marked items in right pane
48
48
  ' = Jump to mark (next letter is the name of the mark [a-zA-Z'])
49
+ The 5 latest directories visited are stored in marks 1-5 (1 being the very latest)
49
50
  / = Enter search string in bottom window to highlight matching items and jump to the first match
50
51
  n = Jump to the next item matched by '/'
51
52
  N = Jump to the previous item matched by '/'
@@ -315,7 +316,7 @@ def main_getkey # GET KEY FROM USER
315
316
  var_resets
316
317
  cur_dir = Dir.pwd
317
318
  @directory[Dir.pwd] = @selected # Store this directory before leaving
318
- @marks["'"] = Dir.pwd
319
+ mark_latest
319
320
  Dir.chdir("..")
320
321
  @directory[Dir.pwd] = File.basename(cur_dir) unless @directory.key?(Dir.pwd)
321
322
  @w_r.update = true
@@ -323,14 +324,14 @@ def main_getkey # GET KEY FROM USER
323
324
  when 'RIGHT', 'l'
324
325
  var_resets
325
326
  @directory[Dir.pwd] = @selected # Store this directory before leaving
326
- @marks["'"] = Dir.pwd
327
+ mark_latest
327
328
  open_selected()
328
329
  @w_r.update = true
329
330
  @w_b.update = true
330
331
  when 'x' # Force open with file opener (used to open HTML files in browser)
331
332
  var_resets
332
333
  @directory[Dir.pwd] = @selected # Store this directory before leaving
333
- @marks["'"] = Dir.pwd
334
+ mark_latest
334
335
  open_selected(true)
335
336
  @w_r.update = true
336
337
  @w_b.update = true
@@ -387,6 +388,7 @@ def main_getkey # GET KEY FROM USER
387
388
  rescue
388
389
  w_b_info(" No such directory")
389
390
  end
391
+ mark_latest
390
392
  @marks["'"] = dir_before
391
393
  end
392
394
  @w_r.update = true
@@ -394,13 +396,13 @@ def main_getkey # GET KEY FROM USER
394
396
  when '~' # Go to home dir
395
397
  var_resets
396
398
  @directory[Dir.pwd] = @selected # Store this directory before leaving
397
- @marks["'"] = Dir.pwd
399
+ mark_latest
398
400
  Dir.chdir
399
401
  @w_r.update = true
400
402
  @w_b.update = true
401
403
  when 'f' # Follow symlink
402
404
  @directory[Dir.pwd] = @selected # Store this directory before leaving
403
- @marks["'"] = Dir.pwd
405
+ mark_latest
404
406
  if File.symlink?(@selected)
405
407
  begin
406
408
  Dir.chdir(File.dirname(File.readlink(@selected)))
@@ -426,7 +428,7 @@ def main_getkey # GET KEY FROM USER
426
428
  jumpdir = File.dirname(jumpdir)
427
429
  end
428
430
  @directory[Dir.pwd] = @selected # Store this directory before leaving
429
- @marks["'"] = Dir.pwd
431
+ mark_latest
430
432
  Dir.chdir(jumpdir)
431
433
  @w_r.pager = 0
432
434
  end
@@ -766,6 +768,14 @@ def ansifix(text) # Format [[fg, attr, text]]
766
768
  end
767
769
  return output
768
770
  end
771
+ def mark_latest
772
+ @marks["5"] = @marks["4"]
773
+ @marks["4"] = @marks["3"]
774
+ @marks["3"] = @marks["2"]
775
+ @marks["2"] = @marks["1"]
776
+ @marks["1"] = Dir.pwd
777
+ @marks["'"] = Dir.pwd
778
+ end
769
779
  # TOP WINDOW FUNCTIONS
770
780
  def w_t_info # SHOW INFO IN @w_t
771
781
  text = " " + ENV['USER'].to_s + "@" + `hostname 2>/dev/null`.to_s.chop + ": " + Dir.pwd + "/"
@@ -887,7 +897,7 @@ end
887
897
  def open_selected(html = nil) # OPEN SELECTED ITEM (when pressing RIGHT)
888
898
  if File.directory?(@selected) # Rescue for permission error
889
899
  begin
890
- @marks["'"] = Dir.pwd
900
+ mark_latest
891
901
  Dir.chdir(@selected)
892
902
  rescue
893
903
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtfm-filemanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.4
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-11 00:00:00.000000000 Z
11
+ date: 2021-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: curses
@@ -33,7 +33,8 @@ dependencies:
33
33
  description: 'A full featured terminal browser with syntax highlighted files, images
34
34
  shown in the terminal, videos thumbnailed, etc. You can bookmark and jump around
35
35
  easily, delete, rename, copy, symlink and move files. RTFM has a a wide range of
36
- other features. New in 1.7.4: Fixed bug on jumping to mark and then pressing PgUp'
36
+ other features. New in 1.8.0: The 5 latest directories visited are stored in marks
37
+ 1-5 (1 being the very latest)'
37
38
  email: g@isene.com
38
39
  executables:
39
40
  - rtfm