<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>210426</bug_id>
          
          <creation_ts>2020-04-13 08:11:17 -0700</creation_ts>
          <short_desc>Add ccls config file to the list of ignored files</short_desc>
          <delta_ts>2020-09-20 13:16:32 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>New Bugs</component>
          <version>WebKit Nightly Build</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Sergio Villar Senin">svillar</reporter>
          <assigned_to name="Sergio Villar Senin">svillar</assigned_to>
          <cc>bfulgham</cc>
    
    <cc>don.olmstead</cc>
    
    <cc>keith_miller</cc>
    
    <cc>pnormand</cc>
    
    <cc>simon.fraser</cc>
    
    <cc>thorton</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1640870</commentid>
    <comment_count>0</comment_count>
    <who name="Sergio Villar Senin">svillar</who>
    <bug_when>2020-04-13 08:11:17 -0700</bug_when>
    <thetext>Add ccls config file to the list of ignored files</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1640875</commentid>
    <comment_count>1</comment_count>
      <attachid>396280</attachid>
    <who name="Sergio Villar Senin">svillar</who>
    <bug_when>2020-04-13 08:13:53 -0700</bug_when>
    <thetext>Created attachment 396280
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1646631</commentid>
    <comment_count>2</comment_count>
    <who name="Sergio Villar Senin">svillar</who>
    <bug_when>2020-04-28 12:46:49 -0700</bug_when>
    <thetext>Ping reviewers.

ccls is a stand-alone server implementing the Language Server Protocol for C, C++, and Objective-C languages. It can be used with any editor which provides an LSP client implementation. It originates from cquery.

https://github.com/MaskRay/ccls/wiki

It&apos;s basically used to provide semantic highlight and code navigation to big source code bases as WebKit. Many editors support LSP servers.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1646901</commentid>
    <comment_count>3</comment_count>
    <who name="EWS">ews-feeder</who>
    <bug_when>2020-04-29 00:59:22 -0700</bug_when>
    <thetext>Committed r260885: &lt;https://trac.webkit.org/changeset/260885&gt;

All reviewed patches have been landed. Closing bug and clearing flags on attachment 396280.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1646902</commentid>
    <comment_count>4</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2020-04-29 01:00:16 -0700</bug_when>
    <thetext>&lt;rdar://problem/62581559&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1690065</commentid>
    <comment_count>5</comment_count>
      <attachid>396280</attachid>
    <who name="Philippe Normand">pnormand</who>
    <bug_when>2020-09-19 07:04:20 -0700</bug_when>
    <thetext>Comment on attachment 396280
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=396280&amp;action=review

&gt; ChangeLog:9
&gt; +        * .gitignore: ccls can read configuration options from a .ccls file in
&gt; +        the project root directory. Let&apos;s just ignore it.

I don&apos;t understand the reason for this change. I&apos;ve been using a local .ccls file for months, ccls running from the SDK actually needs such file. So I would like to revert this change and commit my .ccls file because I think it would be useful for a wider audience :)
Unless your IDE was generating a .ccls file? That seems to be what this patch implies, please elaborate :)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1690066</commentid>
    <comment_count>6</comment_count>
    <who name="Philippe Normand">pnormand</who>
    <bug_when>2020-09-19 07:04:59 -0700</bug_when>
    <thetext>cat .ccls
%compile_commands.json
%h -x
%h c++-header
%h --include=config.h
%cpp --include=config.h</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1690213</commentid>
    <comment_count>7</comment_count>
    <who name="Sergio Villar Senin">svillar</who>
    <bug_when>2020-09-20 13:16:32 -0700</bug_when>
    <thetext>(In reply to Philippe Normand from comment #5)
&gt; Comment on attachment 396280 [details]
&gt; Patch
&gt; 
&gt; View in context:
&gt; https://bugs.webkit.org/attachment.cgi?id=396280&amp;action=review
&gt; 
&gt; &gt; ChangeLog:9
&gt; &gt; +        * .gitignore: ccls can read configuration options from a .ccls file in
&gt; &gt; +        the project root directory. Let&apos;s just ignore it.
&gt; 
&gt; I don&apos;t understand the reason for this change. I&apos;ve been using a local .ccls
&gt; file for months, ccls running from the SDK actually needs such file. So I
&gt; would like to revert this change and commit my .ccls file because I think it
&gt; would be useful for a wider audience :)
&gt; Unless your IDE was generating a .ccls file? That seems to be what this
&gt; patch implies, please elaborate :)

Having a .ccls file is optional for ccls to work. That&apos;s the reason why I decided to add it to the list of ignored files instead of committing it. But I don&apos;t have a strong opinion here, i.e. I&apos;m fine with you adding a .ccls file.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>396280</attachid>
            <date>2020-04-13 08:13:53 -0700</date>
            <delta_ts>2020-04-29 00:59:22 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-210426-20200413171351.patch</filename>
            <type>text/plain</type>
            <size>937</size>
            <attacher name="Sergio Villar Senin">svillar</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMjYwMDA2CmRpZmYgLS1naXQgYS8uZ2l0aWdub3JlIGIvLmdp
dGlnbm9yZQppbmRleCBmMGMyNWZhMjYwMmMyMDk5YTIzMGI0YzFiMWE3ZGM0MDNkYzNlNjAyLi40
ZDc1MmYyN2Y2YWVkMDk1NDE0ZDc0NDMxZDQxNTAzN2IzNzJmOWUwIDEwMDY0NAotLS0gYS8uZ2l0
aWdub3JlCisrKyBiLy5naXRpZ25vcmUKQEAgLTI2LDYgKzI2LDcgQEAgeGN1c2VyZGF0YQogdGFn
cwogKn4KIC4qLnN3W2EtcF0KKy5jY2xzCiAuY2xhbmdkCiBjb21waWxlX2NvbW1hbmRzLmpzb24K
IApkaWZmIC0tZ2l0IGEvQ2hhbmdlTG9nIGIvQ2hhbmdlTG9nCmluZGV4IGNjOTU5Y2I0YWFiNjc5
MWM0ZDA2MmY2NDNjNWRkNGI3ZmE0NzFlNDQuLjkyMzYyMmIyOGUxMTFlZGVmNTE2MzMxNGE3NTZk
MDZhYTQ5MjFiZmYgMTAwNjQ0Ci0tLSBhL0NoYW5nZUxvZworKysgYi9DaGFuZ2VMb2cKQEAgLTEs
MyArMSwxMyBAQAorMjAyMC0wNC0xMyAgU2VyZ2lvIFZpbGxhciBTZW5pbiAgPHN2aWxsYXJAaWdh
bGlhLmNvbT4KKworICAgICAgICBBZGQgY2NscyBjb25maWcgZmlsZSB0byB0aGUgbGlzdCBvZiBp
Z25vcmVkIGZpbGVzCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNn
aT9pZD0yMTA0MjYKKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAg
ICAgICAqIC5naXRpZ25vcmU6IGNjbHMgY2FuIHJlYWQgY29uZmlndXJhdGlvbiBvcHRpb25zIGZy
b20gYSAuY2NscyBmaWxlIGluCisgICAgICAgIHRoZSBwcm9qZWN0IHJvb3QgZGlyZWN0b3J5LiBM
ZXQncyBqdXN0IGlnbm9yZSBpdC4KKwogMjAyMC0wNC0xMyAgQWRyaWFuIFBlcmV6IGRlIENhc3Ry
byAgPGFwZXJlekBpZ2FsaWEuY29tPgogCiAgICAgICAgIFtHVEtdW0NNYWtlXSBJbnRyb2R1Y2Ug
YW4gVVNFX0dUSzQgYnVpbGQgb3B0aW9uCg==
</data>

          </attachment>
      

    </bug>

</bugzilla>