@@ -12,10 +12,15 @@ This is a list of the current regular expressions that are currently implemented
1212
1313functionName - function description - "regular expression", "flags" - "replacement text"
1414
15- - rmHangingSpaces - This function removes all of the spaces that appear at the end of sentences - " $", "gm" - ""
16- - rmNewLines - This function removes all of the new lines in the selection - "\n", "gm" - " "
17- - rmHyphenLineEnd - This function removes all of the hyphens that appear at the end of the line - "(?<=[ a-z] )-$\n(?=[ a-z] )", "gm" - ""
18- - rmSentenceBreaks - This function removes all of the newlines that appear to break up a sentence - "[ a-z] $\n+[ a-z] ", "gm" - " "
15+ - rmHangingSpaces
16+ - This function removes all of the spaces that appear at the end of sentences - " $", "gm" - ""
17+ - rmNewLines
18+ - This function removes all of the new lines in the selection - "\n", "gm" - " "
19+ - rmHyphenLineEnd
20+ - This function removes all of the hyphens that appear at the end of the line - "(?<=[ a-z] )-$\n(?=[ a-z] )", "gm" - ""
21+ - rmSentenceBreaks
22+ - This function removes all of the newlines that appear to break up a sentence - "[ a-z] $\n+[ a-z] ", "gm" - " "
23+
1924<!--
2025\!\[feature X\]\(images/feature-x.png\)
2126
@@ -47,6 +52,7 @@ This extension contributes the following settings:
4752These plans are very much a wishlist that may or may not ever be completed. Feel free to create issues and/or pull requests to add features.
4853
4954- add more regular expressions
55+ - remove any curly quotes, commas, etc and replace them with the straight versions
5056- add the ability to combine multiple regular expressions in sequence
5157- [ set up webpack to reduce the size of the extension] ( https://code.visualstudio.com/api/working-with-extensions/bundling-extension )
5258<!-- - [publish the extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) -->
@@ -67,22 +73,31 @@ These plans are very much a wishlist that may or may not ever be completed. Feel
6773
6874## Known Issues
6975
70- At the moment there are no known issues
76+ <!-- At the moment there are no known issues -->
77+ - for some reason the regex is not completing as expected
78+ <!-- - this might be an issue with the string String difference as it was working before I changed it -->
7179
7280-----------------------------------------------------------------------------------------------------------
7381
7482## Release Notes
7583
76- ### 0.0.1
84+ ### 0.0.0002
85+
86+ - updated
87+ - minor changes to the README
88+ - one regex statement in extension.ts to match the others
89+ - added known bug
90+ - changed the release versioning
91+
92+ ### 0.0.0001
7793
7894Initial release of PasteRegEx
7995
8096Includes:
8197
8298- apply regular expression to selected text
83- - implimented the following commands
99+ - implemented the following commands
84100 - rmHangingSpaces
85101 - rmNewLines
86102 - rmHyphenLineEnd
87103 - rmSentenceBreaks
88-
0 commit comments