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
DEPRECATED IN 0.11 *deprecated-0.11* VIMSCRIPT • *termopen()* Use |jobstart() with `{term: v:true}`.
use jobstart instead of termopen in kitty_commands.lua
kitty_commands.lua
from
local success, error = pcall(vim.fn.termopen, full_cmd, {
to
local success, error = pcall(vim.fn.jobstart, full_cmd, { term = true,
The text was updated successfully, but these errors were encountered:
feat: use jobstart for Neovim v0.11+ instead of termopen
6327cb9
closes #295
feat: use jobstart for Neovim v0.11+ instead of termopen (#298)
2d24427
chore(release): 6.2.0
9f4e068
# [6.2.0](v6.1.2...v6.2.0) (2024-12-31) ### Features * use jobstart for Neovim v0.11+ instead of termopen ([#298](#298)) ([2d24427](2d24427)), closes [#295](#295)
🎉 This issue has been resolved in version 6.2.0 🎉
The release is available on GitHub release
Your semantic-release bot 📦🚀
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
use jobstart instead of termopen in
kitty_commands.lua
from
to
The text was updated successfully, but these errors were encountered: