Coc.nvim coc-powershell extension does not work with this plugin as the extension is looking for and works with "ps1" filetype specifically.
e.g.
let cmdExecFile = commands.registerCommand("powershell.execute", async (...args: any[]) => {
let document = await workspace.document
if (!document || document.filetype !== 'ps1') {
return;
}
This is not so much something that I'd like fixed, rather just posting here so people are aware that this is the reason why coc.nvim may not be working for them.
Unfortunately, the vim-powershell plugin seems to be in abandonware status; thank you for reporting that issue, but it seems to be the very reason we should be using vim-ps1. 😞
Coc.nvim coc-powershell extension does not work with this plugin as the extension is looking for and works with "ps1" filetype specifically.
e.g.
This is not so much something that I'd like fixed, rather just posting here so people are aware that this is the reason why coc.nvim may not be working for them.