bug correction, lines more than 30 chars long
Brought to you by:
alphpt,
pwner4once
BUG:
When the auto-indentation option of notepad++ is active, the software crashes if you try to make shortcut and if before the shortcut are more than 130 chars.
CAUSE:
File: quicktext.cpp
Function: void QuickText()
in the if block "indenting is ON", the full current line is pasted into an array of 128 chars.
FIX
Now, the line is analyzed only 128 or less (if the shorcut is before) chars at a time. So that the indentation is reproduced no matter how long it is.
See the quicktext.cpp file attached.
I do not upload the .dll file since I guess nobody would download it blindly.
Oh, and many thanks for your work ! It is very very useful to me.
the fixed file