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
We already have code completion support for Neovim here:
https://github.com/smallcloudai/refact-neovim
It's possible to integrate chat to Neovim as well, using toggleterm:
local Terminal = require('toggleterm.terminal').Terminal local refact = Terminal:new({ cmd="refact .", direction="float", hidden=true }) function _refact_toggle() refact:toggle() end vim.api.nvim_set_keymap("n", "<A-e>", "<cmd>lua _refact_toggle()<CR>", {noremap = true, silent = true}) vim.api.nvim_set_keymap("t", "<A-e>", "<cmd>lua _refact_toggle()<CR>", {noremap = true, silent = true})
Questions:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We already have code completion support for Neovim here:
https://github.com/smallcloudai/refact-neovim
It's possible to integrate chat to Neovim as well, using toggleterm:
Questions:
The text was updated successfully, but these errors were encountered: