Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I paste curly quotes into my IDE as straight quotes?

How can I paste curly quotes into my IDE as straight quotes? I will often paste code into Visual Studio from PDF files. Then I have to change all the quotation marks to "straight" ones. Ive tried the programs that strip formatting but they don't work. Below is a pic of what I mean.

alt text

Thanks

like image 889
JimDel Avatar asked Feb 26 '23 05:02

JimDel


1 Answers

You could write an Add-In to do this, but for quick and easy I did it with this Macro and added a button to my Toolbar to run it:

Imports EnvDTE

Public Module Module1

    Sub RemoveSmartQuotes()

        Dim sFind() As String = New String() {Chr(145), Chr(146), Chr(147), Chr(148)}
        Dim sReplace() As String = New String() {Chr(39), Chr(39), Chr(34), Chr(34)}

        For i As Integer = 0 To sFind.Length - 1
            DTE.Find.Action = vsFindAction.vsFindActionReplaceAll
            DTE.Find.FindWhat = sFind(i)
            DTE.Find.ReplaceWith = sReplace(i)
            DTE.Find.Target = vsFindTarget.vsFindTargetCurrentDocument
            DTE.Find.MatchCase = False
            DTE.Find.MatchWholeWord = False
            DTE.Find.MatchInHiddenText = True
            DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral
            DTE.Find.KeepModifiedDocumentsOpen = False
            DTE.Find.FilesOfType = ""
            DTE.Find.ResultsLocation = vsFindResultsLocation.vsFindResultsNone
            DTE.Find.Execute()
        Next i

    End Sub
End Module
like image 123
Bob Avatar answered Mar 23 '23 14:03

Bob