This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 173
Add option to Open with
specified program
#199
Open
bogdan-the-great
wants to merge
46
commits into
dylanaraps:master
Choose a base branch
from
bogdan-the-great:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I added more things to my fork, but I'll leave it opened if someone needs it. |
Such as: - Don't show details if folder is empty. - Warning message now skipable by pressing any key. - Added `Permission denied` warning. - Changed folders to not be bold.
Changes: - Multiple file open with (normal and detached) - Move status line one line down and hide it on messages/actions - Hide cursor on `Permission denied` warning - Fixed icons reappearing after entering a directory from history - Let user mark multiple files with multiple directories at time - Fixed marks not reappearing after entering a directory with marks
Changes: - Added sixel support (which requires img2sixel command from libsixel) - Removed colored filenames (mostly to speed things up a bit) - Increased the number of currently visible lines by 1 to take advantage of previous changes with the status line - Fixed creating a file - Fixed icon disappearing after opening directory from history - Changed rename command look - Fixed weird history behaviour with current cursor position formatting - Fixed disappearing icons when going back from history - Tried to speed things up (and have in plans to overhaul the behaviour of opening the directory to make it even faster)
This commit optimizes (FINALLY!) the `ctrl` + `d/u` actions. It does it by not printing 14 lines line-by-line, but it jumps quickly to the desired line, and if it isn't on screen, then it will quickly jump to the last visible edge, and then print line-by-line. This speeds up jumping a lot when details are on, but still relies on the speed of printing a line. Printing a line could be made faster only by doing two things: 1. Heavily refactoring the whole `read_dir` and associated functions, to implement some sort of lazy loading for directories. 2. Make details more faster by using other tools for checking date and time. Less refactoring, but still some.
…o remove write protected files
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I missed this functionality from nnn so I added it. The second option
O
opens program detached from the terminal in background so I stated that this option is made for opening GUI programs and doing stuff in fff at the same time.