mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-08-26 12:18:31 +02:00
Release 5.5.2 ( https://www.scintilla.org/scintilla552.zip ) Released 21 August 2024. Add SCI_SETCOPYSEPARATOR for separator between parts of a multiple selection when copied to the clipboard. Feature #1530. Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and its nesting depth. Add SCI_STYLESETSTRETCH to support condensed and expanded text styles. Add SCI_LINEINDENT and SCI_LINEDEDENT. Feature #1524. Fix bug on Cocoa where double-click stopped working when system had been running for a long time. On Cocoa implement more values of font weight and stretch. Release 5.4.0 ( https://www.scintilla.org/lexilla540.zip ) Released 21 August 2024. Inside Lexilla, LexerModule instances are now const. This will require changes to applications that modify Lexilla.cxx, which may be done to add custom lexers. Lexer added for TOML "toml". Bash: Handle backslash in heredoc delimiter. Issue #257. Progress: Fix lexing of nested comments. Pull request #258. Force lower-casing of case-insensitive keyword lists so keywords match in some lexers. Issue #259. Close #15564
74 lines
917 B
Plaintext
74 lines
917 B
Plaintext
{4}cat{0} {12}<<A\"{13}
|
|
$(echo 00)
|
|
{12}A"{0}
|
|
|
|
{4}cat{0} {12}<<A\\\"{13}
|
|
$(echo 01)
|
|
{12}A\"{0}
|
|
|
|
{4}cat{0} {12}<<A\B{13}
|
|
$(echo 1)
|
|
{12}AB{0}
|
|
|
|
{4}cat{0} {12}<<A\\B{13}
|
|
$(echo 2)
|
|
{12}A\B{0}
|
|
|
|
{4}cat{0} {12}<<A\\\B{13}
|
|
$(echo 3)
|
|
{12}A\B{0}
|
|
|
|
{4}cat{0} {12}<<A\\\\B{13}
|
|
$(echo 4)
|
|
{12}A\\B{0}
|
|
|
|
{4}cat{0} {12}<<A\\\\\B{13}
|
|
$(echo 5)
|
|
{12}A\\B{0}
|
|
|
|
{4}cat{0} {12}<<'A\'{13}
|
|
$(echo 10)
|
|
{12}A\{0}
|
|
|
|
{4}cat{0} {12}<<'A\B'{13}
|
|
$(echo 11)
|
|
{12}A\B{0}
|
|
|
|
{4}cat{0} {12}<<'A\\B'{13}
|
|
$(echo 12)
|
|
{12}A\\B{0}
|
|
|
|
{4}cat{0} {12}<<'A\\\B'{13}
|
|
$(echo 13)
|
|
{12}A\\\B{0}
|
|
|
|
{4}cat{0} {12}<<'A\\\\B'{13}
|
|
$(echo 14)
|
|
{12}A\\\\B{0}
|
|
|
|
{4}cat{0} {12}<<"A\""{13}
|
|
$(echo 20)
|
|
{12}A"{0}
|
|
|
|
{4}cat{0} {12}<<"A\B"{13}
|
|
$(echo 21)
|
|
{12}A\B{0}
|
|
|
|
{4}cat{0} {12}<<"A\\B"{13}
|
|
$(echo 22)
|
|
{12}A\B{0}
|
|
|
|
{4}cat{0} {12}<<"A\\\B"{13}
|
|
$(echo 23)
|
|
{12}A\\B{0}
|
|
|
|
{4}cat{0} {12}<<"A\\\\B"{13}
|
|
$(echo 24)
|
|
{12}A\\B{0}
|
|
|
|
{4}cat{0} {12}<<"A\\\\\B"{13}
|
|
$(echo 25)
|
|
{12}A\\\B{0}
|
|
|
|
{4}echo{0} {8}x{0}
|