We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
👋🏻 I was looking for a way to make running the same command quicker.
So I wanted an alias like:
:Ara <any list of commands>
e.g. translate...
:Ara sleep 10 && ls -la
into...
:AsyncRun -mode=term -pos=floaterm_reuse -position=bottomright -width=0.4 sleep 10 && ls -la
I found https://github.com/skywind3000/asyncrun.vim/wiki/Customize-Runner but it didn't seem quite right.
I tried something custom like:
fun! AsyncRunAlias(cmd) call asyncrun.AsyncRun(a:cmd, '-mode=term -pos=floaterm_reuse -position=bottomright -width=0.4') endfun command! -nargs=* Ara call AsyncRunAlias(<q-args>)
But this errors.
Any help would be greatly appreciated ❤️
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👋🏻 I was looking for a way to make running the same command quicker.
So I wanted an alias like:
e.g. translate...
into...
I found https://github.com/skywind3000/asyncrun.vim/wiki/Customize-Runner but it didn't seem quite right.
I tried something custom like:
But this errors.
Any help would be greatly appreciated ❤️
The text was updated successfully, but these errors were encountered: