Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: sublimehq/Packages

Tags

v4200

Toggle v4200's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[HTML] Improve conflict markers in tags and values (#4238)

* [HTML] Move syntax tests to tests/ directory

* [HTML] Fix various conflict marker issues

This commit explicitly includes `merge-conflict-markers` in front of
each tag end punctuation (`>` or `/>`) to ensure conflict markers
taking precedence.

Including that context in `tag-attributes` is not sufficient as it is
included after tag end punctuation patterns.

Including that context in `prototype` is not sufficient as as it is
excluded from tag attribute contexts for templating languages to inject
template tags only within attribute names or values using `prototype`.

Syntax tests are reorganized in a dedicated test file.

v4199

Toggle v4199's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[HTML] Improve conflict markers in tags and values (#4238)

* [HTML] Move syntax tests to tests/ directory

* [HTML] Fix various conflict marker issues

This commit explicitly includes `merge-conflict-markers` in front of
each tag end punctuation (`>` or `/>`) to ensure conflict markers
taking precedence.

Including that context in `tag-attributes` is not sufficient as it is
included after tag end punctuation patterns.

Including that context in `prototype` is not sufficient as as it is
excluded from tag attribute contexts for templating languages to inject
template tags only within attribute names or values using `prototype`.

Syntax tests are reorganized in a dedicated test file.

v4198

Toggle v4198's commit message
Add "interactive" option for build systems

v4197

Toggle v4197's commit message
Add "interactive" option for build systems

v4196

Toggle v4196's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Diff] Refactor for Diff3, Git, and conflicts (#4111)

[Diff] Refactor Diff, Git Diff and Diff3

This commit...

1. rewrites Diff and Diff3 syntax according to the GNU and SVN documentation.
2. adds new Git Diff syntax, also used by Git Log.

## Notable changes

- new support for
    - Diff3 formats
    - Conflict sections
    - "Combined" unified diffs, only in Git Diff
- new syntax for Git Diff emails (`git am` and `git format-patch`)
  - if normal Diff syntax detects the "magic" first line, 
    it delegates out to Git Diff instead.
- tweaked scopes, preserving stacking from #2178 for backwards-compatibility
- lots of documentation links
- lots of new tests, mostly pulled from relevant documentation

Co-authored-by: deathaxe <[email protected]>

v4195

Toggle v4195's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Diff] Refactor for Diff3, Git, and conflicts (#4111)

[Diff] Refactor Diff, Git Diff and Diff3

This commit...

1. rewrites Diff and Diff3 syntax according to the GNU and SVN documentation.
2. adds new Git Diff syntax, also used by Git Log.

## Notable changes

- new support for
    - Diff3 formats
    - Conflict sections
    - "Combined" unified diffs, only in Git Diff
- new syntax for Git Diff emails (`git am` and `git format-patch`)
  - if normal Diff syntax detects the "magic" first line, 
    it delegates out to Git Diff instead.
- tweaked scopes, preserving stacking from #2178 for backwards-compatibility
- lots of documentation links
- lots of new tests, mostly pulled from relevant documentation

Co-authored-by: deathaxe <[email protected]>

v4194

Toggle v4194's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Diff] Refactor for Diff3, Git, and conflicts (#4111)

[Diff] Refactor Diff, Git Diff and Diff3

This commit...

1. rewrites Diff and Diff3 syntax according to the GNU and SVN documentation.
2. adds new Git Diff syntax, also used by Git Log.

## Notable changes

- new support for
    - Diff3 formats
    - Conflict sections
    - "Combined" unified diffs, only in Git Diff
- new syntax for Git Diff emails (`git am` and `git format-patch`)
  - if normal Diff syntax detects the "magic" first line, 
    it delegates out to Git Diff instead.
- tweaked scopes, preserving stacking from #2178 for backwards-compatibility
- lots of documentation links
- lots of new tests, mostly pulled from relevant documentation

Co-authored-by: deathaxe <[email protected]>

v4193

Toggle v4193's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Diff] Refactor for Diff3, Git, and conflicts (#4111)

[Diff] Refactor Diff, Git Diff and Diff3

This commit...

1. rewrites Diff and Diff3 syntax according to the GNU and SVN documentation.
2. adds new Git Diff syntax, also used by Git Log.

## Notable changes

- new support for
    - Diff3 formats
    - Conflict sections
    - "Combined" unified diffs, only in Git Diff
- new syntax for Git Diff emails (`git am` and `git format-patch`)
  - if normal Diff syntax detects the "magic" first line, 
    it delegates out to Git Diff instead.
- tweaked scopes, preserving stacking from #2178 for backwards-compatibility
- lots of documentation links
- lots of new tests, mostly pulled from relevant documentation

Co-authored-by: deathaxe <[email protected]>

v4192

Toggle v4192's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Java] Fix literal backslash in strings (#4038)

This commit removes `invalid.illegal` scope from unsupported escape sequences.

Actually `\` is interpreted literal if it doesn't start a supported escape
sequence.

The following is a valid string without illegals:

```
new Source("src\main\java\com\example\application\views\HomeView.java")
```

v4191

Toggle v4191's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[Java] Fix literal backslash in strings (#4038)

This commit removes `invalid.illegal` scope from unsupported escape sequences.

Actually `\` is interpreted literal if it doesn't start a supported escape
sequence.

The following is a valid string without illegals:

```
new Source("src\main\java\com\example\application\views\HomeView.java")
```