diff --git a/README.md b/README.md index 66ebb37..cf5554b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Maddy's SurfingKeys Configuration This is my configuration for the [SurfingKeys](https://github.com/brookhong/Surfingkeys) browser extension. Its primary features include -- 258 [Site-Specific Key Mappings](#site-specific-key-mappings) which **automate common actions** on many popular websites +- 128 [Site-Specific Key Mappings](#site-specific-key-mappings) which **automate common actions** on many popular websites - 55 [Search Suggestion Engines](#search-suggestion-engines) providing **interactive search suggestions** from dozens of knowledge sources Table of Contents @@ -30,7 +30,7 @@ Features ### Site-Specific Key Mappings -258 key mappings for 21 unique +128 key mappings for 21 unique sites have been included which can help you perform some common actions: diff --git a/gulpfile.js b/gulpfile.js index 5b78e40..99032fc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -223,7 +223,7 @@ task("docs", parallel(async () => { .pipe(replace("", disclaimer)) .pipe(replace("", Object.keys(compl).length)) .pipe(replace("", complTable)) - .pipe(replace("", Object.keys(keys.maps).reduce((acc, m) => acc + m.length, 0))) + .pipe(replace("", Object.values(keys.maps).reduce((acc, m) => acc + m.length, 0))) .pipe(replace("", Object.keys(keys.maps).length)) .pipe(replace("", keysTable)) .pipe(replace("", screenshotList))