-
Hi. One thing that I still miss when I work with Clifm is the Ctrl-r functionality to search through command history interactively. the default Ctrl-r in bash is not my favorite. I like this approach and I used it a lot in the past. I was going to implement it on my own in a simpler way like this:( The only problem is that whenever I select one of the items from the list and press enter, it will paste it to stdout and run it. but I don't like this behavior, I want to paste it to stdout and stay there! If you look at that file at the end, they solved it by using Edit: it's good to mention that I put |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @LinArcX. Though it does not provide exactly the same functionality, you can try with EDIT: Since the latest commit it is possible to bind
|
Beta Was this translation helpful? Give feedback.
Hi @LinArcX.
Though it does not provide exactly the same functionality, you can try with
!<TAB>
(the main difference being that you get clifm's command history, not bash).EDIT: Since the latest commit it is possible to bind
!<TAB>
to a custom keybinding via thecmd-hist
action in the keybindings file. For example, to bind it to Ctrl-r:kb edit
cmd-hist:\C-r
.