Changes between Version 2 and Version 3 of WebKitEmacsTips


Ignore:
Timestamp:
May 24, 2020 10:25:56 AM (4 years ago)
Author:
Philippe Normand
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitEmacsTips

    v2 v3  
    4343set -eu
    4444cd $HOME/WebKit/
    45 Tools/Scripts/webkit-flatpak -c ccls "$@"
     45exec Tools/Scripts/webkit-flatpak -c ccls "$@"
    4646}}}
     47
     48If you are running a Fedora Silverblue host OS, make sure the Emacs flatpak app is called with the `--talk-name=org.freedesktop.Flatpak` argument. Then, the `webkit-ccls` contents should rather be:
     49
     50{{{
     51set -eu
     52cd $HOME/WebKit/
     53exec flatpak-spawn --host Tools/Scripts/webkit-flatpak -c ccls "$@"
     54}}}