mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
chore: remove unneeded files
This commit is contained in:
parent
570911e589
commit
ad3f9ececb
2 changed files with 0 additions and 47 deletions
37
announce.md
37
announce.md
|
@ -1,37 +0,0 @@
|
|||
Previously, if you had a file like this:
|
||||
|
||||
```html
|
||||
<p>Some text 1234</p>
|
||||
<script type="text/javascript">
|
||||
// More text 1234
|
||||
foo();
|
||||
</script>
|
||||
```
|
||||
|
||||
Pressing `Space + c` (toggle comment) on the JavaScript comment would've used the HTML comment token:
|
||||
|
||||
```html
|
||||
<p>Some text 1234</p>
|
||||
<script type="text/javascript">
|
||||
<!-- // More text 1234 -->
|
||||
foo();
|
||||
</script>
|
||||
```
|
||||
|
||||
This PR fixes that. Now, the comment token is properly recognized:
|
||||
|
||||
```hmtl
|
||||
<p>
|
||||
Some text 1234
|
||||
</p>
|
||||
<script type="text/javascript">
|
||||
More text 1234
|
||||
foo();
|
||||
</script>
|
||||
```
|
||||
|
||||
It works in _all_ languages that properly inject comment tokens. For instance, JSX, Svelte, and others.
|
||||
|
||||
Closes https://github.com/helix-editor/helix/issues/7364
|
||||
Closes https://github.com/helix-editor/helix/issues/11647
|
||||
Related to to https://github.com/helix-editor/helix/issues/9425
|
10
lol.html
10
lol.html
|
@ -1,10 +0,0 @@
|
|||
<p>Comment toggle on this line should use the HTML comment token(s).</p>
|
||||
<script type="text/javascript">
|
||||
// Comment toggle on this line should use the javascript comment token(s).
|
||||
foo();
|
||||
css`
|
||||
html {
|
||||
background-color: red;
|
||||
}
|
||||
`;
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue