Replace tabs with spaces (NFC) - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) changeset f56398c23a2bd012aade32d4be64687afc6fcbb0
 (DIR) parent 90663b7bbb3de21e0ad0d3529fc3dada520c2f91
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Sun, 30 Sep 2018 04:02:19 
       
       Replace tabs with spaces (NFC)
       
       Diffstat:
        config/luakit/userconf.lua |  20 ++++++++++----------
        1 files changed, 10 insertions(+), 10 deletions(-)
       ---
       diff -r 90663b7bbb3d -r f56398c23a2b config/luakit/userconf.lua
       --- a/config/luakit/userconf.lua        Sun Sep 30 04:00:14 2018 +0200
       +++ b/config/luakit/userconf.lua        Sun Sep 30 04:02:19 2018 +0200
       @@ -13,18 +13,18 @@
        
        modes.add_binds("normal", {
            { "<Control-m>", "Open current URL with mpv", function (w)
       -       local uri = w.view.uri
       -       if uri then
       -          luakit.spawn(string.format("mpv %q", uri))
       -       end
       +        local uri = w.view.uri
       +        if uri then
       +           luakit.spawn(string.format("mpv %q", uri))
       +        end
            end },
            { "<Shift-Mouse1>", "Open link under cursor with plumb", function (w, m)
       -       if not m.context.editable then
       -           local uri = w.view.hovered_uri or w.view.uri
       -           if uri then
       -               luakit.spawn(string.format("plumb %q", uri))
       -           end
       -       end
       +        if not m.context.editable then
       +            local uri = w.view.hovered_uri or w.view.uri
       +            if uri then
       +                luakit.spawn(string.format("plumb %q", uri))
       +            end
       +        end
            end },
        })