intention descriptions
This commit is contained in:
parent
4a45348b15
commit
5457d83296
7 changed files with 66 additions and 2 deletions
|
@ -0,0 +1,4 @@
|
||||||
|
const myText =
|
||||||
|
\\Hello
|
||||||
|
\\World!💯
|
||||||
|
;
|
|
@ -0,0 +1 @@
|
||||||
|
const myText = <spot>"Hello\nWorld!\u{1f4af}"</spot>;
|
|
@ -0,0 +1,27 @@
|
||||||
|
<!--
|
||||||
|
~ This file is part of ZigBrains.
|
||||||
|
~
|
||||||
|
~ Copyright (C) 2023-2024 FalsePattern
|
||||||
|
~ All Rights Reserved
|
||||||
|
~
|
||||||
|
~ The above copyright notice and this permission notice shall be included
|
||||||
|
~ in all copies or substantial portions of the Software.
|
||||||
|
~
|
||||||
|
~ ZigBrains is free software: you can redistribute it and/or modify
|
||||||
|
~ it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
~ the Free Software Foundation, only version 3 of the License.
|
||||||
|
~
|
||||||
|
~ ZigBrains is distributed in the hope that it will be useful,
|
||||||
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
~ GNU Lesser General Public License for more details.
|
||||||
|
~
|
||||||
|
~ You should have received a copy of the GNU Lesser General Public License
|
||||||
|
~ along with ZigBrains. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Converts quoted strings into multi-line strings, un-escaping any escape sequences.
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1 @@
|
||||||
|
const myText = "Hello\nWorld!\u{1f4af}";
|
|
@ -0,0 +1,4 @@
|
||||||
|
const myText =
|
||||||
|
<spot>\\Hello
|
||||||
|
\\World!💯</spot>
|
||||||
|
;
|
|
@ -0,0 +1,27 @@
|
||||||
|
<!--
|
||||||
|
~ This file is part of ZigBrains.
|
||||||
|
~
|
||||||
|
~ Copyright (C) 2023-2024 FalsePattern
|
||||||
|
~ All Rights Reserved
|
||||||
|
~
|
||||||
|
~ The above copyright notice and this permission notice shall be included
|
||||||
|
~ in all copies or substantial portions of the Software.
|
||||||
|
~
|
||||||
|
~ ZigBrains is free software: you can redistribute it and/or modify
|
||||||
|
~ it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
~ the Free Software Foundation, only version 3 of the License.
|
||||||
|
~
|
||||||
|
~ ZigBrains is distributed in the hope that it will be useful,
|
||||||
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
~ GNU Lesser General Public License for more details.
|
||||||
|
~
|
||||||
|
~ You should have received a copy of the GNU Lesser General Public License
|
||||||
|
~ along with ZigBrains. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Converts multi-line strings into quoted strings, escaping characters if necessary.
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -41,12 +41,12 @@
|
||||||
<intentionAction>
|
<intentionAction>
|
||||||
<language>Zig</language>
|
<language>Zig</language>
|
||||||
<className>com.falsepattern.zigbrains.zig.intentions.MakeStringMultiline</className>
|
<className>com.falsepattern.zigbrains.zig.intentions.MakeStringMultiline</className>
|
||||||
<category>Zig intentions</category>
|
<category>Zig</category>
|
||||||
</intentionAction>
|
</intentionAction>
|
||||||
<intentionAction>
|
<intentionAction>
|
||||||
<language>Zig</language>
|
<language>Zig</language>
|
||||||
<className>com.falsepattern.zigbrains.zig.intentions.MakeStringQuoted</className>
|
<className>com.falsepattern.zigbrains.zig.intentions.MakeStringQuoted</className>
|
||||||
<category>Zig intentions</category>
|
<category>Zig</category>
|
||||||
</intentionAction>
|
</intentionAction>
|
||||||
|
|
||||||
<!-- Language injection -->
|
<!-- Language injection -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue