March 30th, 2010
0 reactions

Spell checker 2.3 for Visual Studio 2008 SP1

Minor update for the Spell checker add-in for VS 2008 SP1. It is now available at Visual Studio Gallery. Direct link: http://visualstudiogallery.msdn.microsoft.com/en-us/2f3d691d-8838-4d84-ad64-44a02db37e30

What’s new in version 2.3:

  • Updated native code loading mechanism to improve robustness
  • Fixed bug when applying suggestion would also delete punctuation immediately following the word.

You can find extended information on the add-in and possible customization in earlier post. For VS 2010 version look here.

Thanks

Mikhail Arkhipov

Category
ASP.NET

0 comments

Discussion is closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }