-
Hi, Thank you so much for making this. Previously, I could use CTRL-O and it would let me open a file in the system editor. This does not seem to be available anymore. Can you please help direct me to the best way to accomplish this? When I add this Thank You |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 15 replies
-
I didn't implement that. The closest thing is to use type |
Beta Was this translation helpful? Give feedback.
-
@PatrickF1 Not sure if you are interested, do you think it is favorable to output everything to stdout when executing a command substitution? Currently all functions insert the output into the command line, which is fine for interactive usage, but not very interpolatable. We can rewrite everything into something like: if status is-command-substitution
printf $output
else
commandline --current-token --replace $output
end That way people can reuse existing functions to achieve more niche usage, for example this feature request can become |
Beta Was this translation helpful? Give feedback.
-
Hi all, opening a file in editor is now very possible with a bit of work. With the merging of #140, it is now possible to configure a key binding to open the current line in vim. This has a working example: junegunn/fzf#1360. Just combine it with |
Beta Was this translation helpful? Give feedback.
-
I hope this doesn't mean you will ditch #110 because it's from a different aspect. |
Beta Was this translation helpful? Give feedback.
-
Hi there, thank you for making this! I’m trying to get this to work, but i’m not sure what i’m doing wrong… here’s what i did:
However, when attempting to start fzf.fish with
Could you please advise? thank you!
PS. |
Beta Was this translation helpful? Give feedback.
Hi all, opening a file in editor is now very possible with a bit of work. With the merging of #140, it is now possible to configure a key binding to open the current line in vim. This has a working example: junegunn/fzf#1360. Just combine it with
fzf_dir_opts
.