Changes between Version 3 and Version 4 of WebKitEmacsTips


Ignore:
Timestamp:
Jun 2, 2020 1:56:00 AM (4 years ago)
Author:
Philippe Normand
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitEmacsTips

    v3 v4  
    5353exec flatpak-spawn --host Tools/Scripts/webkit-flatpak -c ccls "$@"
    5454}}}
     55
     56Most WebKit header files don't include config.h, which tricks LSP to grey out all file contents in the editor. To fix this, add a `.ccls` file in your WebKit checkout:
     57{{{
     58%compile_commands.json
     59%h -x
     60%h c++-header
     61%h --include=config.h
     62%cpp --include=config.h
     63}}}