-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* modify word replace for case-sensitivity and word boundaries * sanitize user-defined word replacements * revise early-returns * prioritize word replacements by length * optimize sorting * Revert "optimize sorting" This reverts commit d9bb063. * adjust regex for word boundaries * adjust regex to remove word boundaries * modify word replace to remove case-sensitivity * create switches "Match whole word" and "Match case" * implement matching options * handle conflicts in word replace * lint check * (wip) rework word replace system with new constraints from pr uses a single object instead of 2. there is probably bugs. this is a wip * add rule check, remove unnecessary code, separate objects --------- Co-authored-by: nae <[email protected]>
- Loading branch information
Showing
7 changed files
with
114 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ export default { | |
settingsStore, | ||
connectionStore, | ||
is_electron, | ||
wordReplaceStore, | ||
} | ||
}, | ||
unmounted() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters