8000 Comparing microsoft:main...alessandrod:master · microsoft/vscode · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 8000 div class="clearfix new-discussion-timeline container-xl px-3 px-md-4 px-lg-5 mt-4"> Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/vscode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: alessandrod/vscode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 8, 2016

  1. C syntax: consider semicolon to be end of a statement only at EOL

    Fixes GStreamer macro syntax like:
    
        GST_VIDEO_CAPS_MAKE("NV12") ";"                                     \
        GST_VIDEO_CAPS_MAKE_WITH_FEATURES(GST_CAPS_FEATURE_MEMORY_GL_MEMORY,\
            "NV12") ", "                                                    \
        "texture-target = (string) rectangle;"
    
    Where the semicolon in ";" would be considered end of a statement and
    so the following double quotes were interpreted as starting a new
    unmatched string.
    alessandrod committed Sep 8, 2016
    Configuration menu
    Copy the full SHA
    056d120 View commit details
    Browse the repository at this point in the history
  2. Allow problem matchers to change the filePrefix

    Add a filePrefix field to problem patterns, so problem matchers can properly
    parse recursive make output like:
    
    $ make --print-directory -C sys/applemedia
    make: Entering directory `/Users/alessandro/src/gst1/head/gst-plugins-bad/sys/applemedia'
      CC       libgstapplemedia_la-vtdec.lo
      vtdec.c:38:1: error: unknown type name 'FOO'
      FOO
      ^
    
    With this change users can use something like the following patterns to match the output:
    
        "pattern": [
        {
             "regexp": "^((.*): Entering directory `(.*)'|(.*))$",
             "filePrefix": 3
        },
        {
             "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
        ...
    alessandrod committed Sep 8, 2016
    Configuration menu
    Copy the full SHA
    e528b78 View commit details
    Browse the repository at this point in the history
Loading
0