This file contains 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 Bing Links Open in New Tab | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Makes Bing search results open in a new tab. Why? See here: https://www.reddit.com/r/edge/comments/113gvpf/bing_results_in_edge_browser_redirect_to_bingcom/ | |
// @author Kieron Lanning | |
// @match https://www.bing.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
function Register-MakeCompleter { | |
# This scriptblock is called each time tab-completion occurs for `make` or `m` | |
$ScriptBlock = { | |
param( | |
$wordToComplete | |
) | |
# If no Makefile exists in the current directory, return no completions | |
if (-not (Test-Path "./Makefile")) { | |
return |
This file contains 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
include .\common.mk | |
hello: ## Displays 'Hello, World!' | |
@echo "Hello, World!" | |
# Run make, and the 'help' target displays information about commented (## help text) targets. |