This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm-vdiff() { | |
| local namespace="default" values="" value_key="" | |
| local diff_cmd=(dyff between --omit-header) | |
| local positional=() | |
| # argument parsing | |
| while [[ $# -gt 0 ]]; do | |
| case "$1" in | |
| -n|--namespace) namespace="$2"; shift 2;; | |
| -v|--values) values="$2"; shift 2;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Inoreader Open All Unread Articles (New Design) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2.0 | |
| // @description Adds a button to open all unread articles in new tabs | |
| // @match https://*.inoreader.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=inoreader.com | |
| // @grant none | |
| // ==/UserScript== |