Trying to jump multiple items at a time. #1363
-
I am trying to use this , but everytime I hit The code:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
That being said, you probably don't need to use
|
Beta Was this translation helpful? Give feedback.
-
Thanks you very much. Really enjoying to learn about |
Beta Was this translation helpful? Give feedback.
$
commands are synchronous, which means it suspends the UI and shows the shell command execution until it finishes. If you don't want that then you can use%
or&
, which runs the shell command asynchronously in background (%
reads from and writes to the bottom statline).That being said, you probably don't need to use
lf -remote
here - you can just usepush
to simulate key presses, which is probably a lot cleaner.