mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-10-28 18:13:54 +01:00
Use new interfaces SCI_FORMATRANGEFULL, SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL from scintilla 5.2.3 Close #11734
14 lines
224 B
Ruby
14 lines
224 B
Ruby
# heredoc method call, other argument
|
|
puts <<~EOT.chomp
|
|
squiggly heredoc
|
|
EOT
|
|
|
|
puts <<ONE, __FILE__, __LINE__
|
|
content for heredoc one
|
|
ONE
|
|
|
|
# heredoc prevStyle == SCE_RB_GLOBAL
|
|
$stdout.puts <<~EOT.chomp
|
|
squiggly heredoc
|
|
EOT
|