Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'wraptext' of https://github.com/toonn/ranger | Wojciech Siewierski | 2019-12-28 | 6 | -6/+29 |
|\ | |||||
| * | Placate our pep 8 overlords | toonn | 2019-11-06 | 2 | -6/+10 |
| | | |||||
| * | Add a setting to wrap plain text previews | toonn | 2019-11-06 | 5 | -7/+26 |
| | | | | | | | | Fixes #1304 | ||||
* | | Merge pull request #1793 from toonn/fix-fuzzy-tab | Wojciech Siewierski | 2019-12-27 | 1 | -2/+3 |
|\ \ | | | | | | | Fix fuzzy tab completion when prefix is valid dir | ||||
| * | | Fix fuzzy tab completion when prefix is valid dir | toonn | 2019-12-27 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fuzzy tab completion was dropping the entire valid prefix instead of showing the path relative to the current directory. ``` / $ cd usr/sh<tab> / $ cd share/ # `usr/` is dropped because it's already a valid # directory. / $ cd usr/share/ # Proper result with the fix. ``` Fixes #1792 | ||||
* | | | Merge pull request #1789 from toonn/mime-dsf | Wojciech Siewierski | 2019-12-27 | 2 | -1/+9 |
|\ \ \ | |/ / |/| | | Add Direct Stream Digital/Transfer to mime types | ||||
| * | | Add Direct Stream Digital/Transfer to mime types | toonn | 2019-12-26 | 2 | -1/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Direct Stream Digital/Transfer (`.dsf`) files have MIME type `application/octet-stream` but they're audio so `audio/something` is more useful for rifle. Scope also runs `mediainfo` and `exiftool` for miscellaneous `audio/*` files but we can't match on MIME type here so I added a similar clause in `handle_extension`. | ||||
* | | | Merge branch 'drop-icon-title-setting' | toonn | 2019-12-27 | 1 | -5/+1 |
|\ \ \ | |/ / |/| | | |||||
| * | | Drop the update_icon_title setting | toonn | 2019-12-27 | 1 | -5/+1 |
|/ / | | | | | | | | | I forgot to remove the setting from `rc.conf` when I merged the behavior into the `update_title` setting. | ||||
* | | Merge branch 'siikamiika-feat-update-icon-title' | toonn | 2019-12-22 | 5 | -13/+26 |
|\ \ | |||||
| * | | Merge the title settings | toonn | 2019-12-22 | 6 | -34/+18 |
| | | | | | | | | | | | | | | | Upon further consideration we've reconsidered and decided to merge the seperate title update settings. | ||||
| * | | Merge branch 'master' into feat-update-icon-title | siikamiika | 2019-12-09 | 25 | -183/+571 |
| |\ \ | |||||
| * | | | store escape sequence in a constant for clarity | siikamiika | 2019-07-30 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | Escape character is also represented with octal notation to be consistent with prior usage | ||||
| * | | | add update_icon_title option | siikamiika | 2019-07-25 | 6 | -8/+32 |
| | | | | | | | | | | | | | | | | resolves #1637 | ||||
* | | | | Merge branch 'laktak-paste_conflict' | toonn | 2019-12-22 | 7 | -33/+89 |
|\ \ \ \ | |||||
| * | | | | Use readable formatting for the examples | toonn | 2019-12-22 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `F<file_>` is rendered using underline in a man page, which makes the underscore hard to see. So I switched the file name examples for `pp` to use `C<file_>` which is rendered using "double quotation marks." | ||||
| * | | | | Add example and remove reference from docs | toonn | 2019-12-22 | 2 | -4/+8 |
| | | | | | |||||
| * | | | | Rename APPENDIX to SUFFIX | toonn | 2019-12-22 | 1 | -3/+3 |
| | | | | | |||||
| * | | | | Merge branch 'master' into paste_conflict | Christian Zangl | 2019-12-03 | 10 | -41/+83 |
| |\ \ \ \ | | | |/ / | | |/| | | |||||
| * | | | | Merge branch 'master' into paste_conflict | Christian Zangl | 2019-10-04 | 19 | -144/+490 |
| |\ \ \ \ | |||||
| * | | | | | set default make_safe_path=get_safe_path | Christian Zangl | 2019-07-21 | 4 | -26/+34 |
| | | | | | | |||||
| * | | | | | fix docs | Christian Zangl | 2019-07-19 | 2 | -4/+5 |
| | | | | | | |||||
| * | | | | | Added a make_safe_path parameter to paste | Christian Zangl | 2019-07-18 | 8 | -90/+87 |
| | | | | | | | | | | | | | | | | | | | | | | | | It allows you to specify your own function to generate the path for conflicting files. | ||||
| * | | | | | fix CopyLoader | Christian Zangl | 2019-07-14 | 1 | -1/+2 |
| | | | | | | |||||
| * | | | | | Added a conflict parameter to the paste action | Christian Zangl | 2019-07-14 | 7 | -44/+89 |
| | |_|/ / | |/| | | | | | | | | | | | | | It allows you to specify 'overwrite', 'rename', or 'rename_ext' (=default) in case of a file name conflict. This obsoletes the overwrite parameter. | ||||
* | | | | | Merge branch 'mime-rifle' | toonn | 2019-12-21 | 1 | -9/+15 |
|\ \ \ \ \ | |||||
| * | | | | | Bring custom mime types in line with file(1) | toonn | 2019-11-17 | 1 | -19/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Non-standard formats missing the `x-` prefix: flac and flv Renamed mime types: video/mkv -> video/x-matroska video/divx -> video/x-msvideo Dropped extension: divx | ||||
| * | | | | | Refine custom mime types for rifle | toonn | 2019-11-17 | 1 | -9/+20 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge branch 'doc-optional-deps' | toonn | 2019-12-21 | 3 | -15/+167 |
|\ \ \ \ \ | |||||
| * | | | | | Add list of optional deps to man page | toonn | 2019-12-21 | 3 | -15/+167 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The man page was missing the various optional dependencies for previews. I revised and then copied the list from the `README.md`. Fixes #1781 | ||||
* | | | | | Merge branch 'leiserfg-patch-1' | toonn | 2019-12-21 | 4 | -5/+20 |
|\ \ \ \ \ | |||||
| * | | | | | Add bat to documentation | toonn | 2019-12-20 | 3 | -5/+17 |
| | | | | | | |||||
| * | | | | | Uncomment bat for code highlighting | toonn | 2019-12-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our default behavior is to use a dependency whenever it's available. Only things that would slow previews down too much are commented out by default. | ||||
| * | | | | | Replace COLORTERM with 8bit for avoiding problems with truecolor. | leiserfg | 2018-12-27 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Remove spaces | leiserfg | 2018-12-25 | 1 | -2/+2 |
| | | | | | | |||||
| * | | | | | Add bat support for code highlighting | Leiser Fernández Gallo | 2018-11-30 | 1 | -0/+3 |
| | | | | | | |||||
* | | | | | | Merge branch 'fix-clean-cache' | toonn | 2019-12-21 | 2 | -5/+2 |
|\ \ \ \ \ \ | |||||
| * | | | | | | Restore access to a preview cache in clean mode | toonn | 2019-12-21 | 2 | -5/+2 |
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `--clean` is incredibly useful when testing contributions to `scope.sh` among other things but some (most?) previews require the cache to function. As a compromise every invocation using `--clean` will create a temporary cache directory. Fixes #1783 | ||||
* | | | | | | Merge branch 'Sighery-master' | toonn | 2019-12-21 | 1 | -916/+948 |
|\ \ \ \ \ \ | |||||
| * | | | | | | Document the usage of ? (help) | Sighery | 2019-12-20 | 1 | -79/+96 |
| | | | | | | | |||||
| * | | | | | | Add Space and navigation keys to the cheatsheet | Sighery | 2019-12-20 | 1 | -879/+894 |
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | Add to the cheatsheet the functionality of Space and some navigation keys: Insert, Home, End, Page Up and Page Down. | ||||
* | | | | | | Merge branch 'artemisart-patch-1' | toonn | 2019-12-20 | 1 | -0/+21 |
|\ \ \ \ \ \ | |||||
| * | | | | | | use function, cleanup file, proper repaint | Mathis Chenuet | 2019-11-08 | 1 | -2/+8 |
| | | | | | | | |||||
| * | | | | | | add doc and binding | Mathis Chenuet | 2019-11-03 | 1 | -0/+10 |
| | | | | | | | |||||
| * | | | | | | port automatic_cd to fish | Mathis Chenuet | 2019-11-03 | 1 | -0/+5 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'igoyak-1367_busyloop' | toonn | 2019-12-19 | 1 | -1/+4 |
|\ \ \ \ \ \ \ | |||||
| * | | | | | | | Minor linting fixes | toonn | 2019-12-18 | 1 | -2/+1 |
| | | | | | | | | |||||
| * | | | | | | | Exit if STDIN is closed #1367 | Gustav Larsson | 2019-08-15 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of entering a busy-loop if STDIN is closed, terminate ranger Fixes #1367 Fixes #87 Fixes #525 Fixed #1534 | ||||
* | | | | | | | | Merge branch 'kdheepak-fix-python3-image-preview-iterm2' | toonn | 2019-12-18 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ | |||||
| * | | | | | | | | Return decoded string instead of byte string of image | Dheepak Krishnamurthy | 2019-06-20 | 1 | -1/+1 |
| | | | | | | | | |