Texteditor ctrl+z undo duplicates every "|"
Boneshockx opened this issue ยท 0 comments
Is there an existing issue for this?
- I have searched the existing open and closed issues.
Description
Text editor undo will add multiple |
in strings where "|" is used.
WeakAuras Version
WeakAuras 5.17.1
Tested with only WeakAuras
I got this issue with only WeakAuras enabled
Reproduction Steps
- Open code text editor
- type something like:
print("|")
print("||")
local test = "||| hello |||"
- Ctrl+z
- Text becomes:
print("||")
print("||||")
local test = "|||||| hello ||||||"