BrowserMacros.arxiv
— Methodarxiv(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @arxiv
.
Examples
arxiv("My search query") # opens default browser
url = arxiv("My search query"; open_browser=false)
BrowserMacros.baidu
— Methodbaidu(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @baidu
.
Examples
baidu("My search query") # opens default browser
url = baidu("My search query"; open_browser=false)
BrowserMacros.bing
— Methodbing(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @bing
.
Examples
bing("My search query") # opens default browser
url = bing("My search query"; open_browser=false)
BrowserMacros.brave
— Methodbrave(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @brave
.
Examples
brave("My search query") # opens default browser
url = brave("My search query"; open_browser=false)
BrowserMacros.chatgpt
— Methodchatgpt(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @chatgpt
.
Examples
chatgpt("My search query") # opens default browser
url = chatgpt("My search query"; open_browser=false)
BrowserMacros.ddg
— Methodddg(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @ddg
.
Examples
ddg("My search query") # opens default browser
url = ddg("My search query"; open_browser=false)
BrowserMacros.discourse
— Methoddiscourse(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @discourse
.
Examples
discourse("My search query") # opens default browser
url = discourse("My search query"; open_browser=false)
BrowserMacros.ecosia
— Methodecosia(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @ecosia
.
Examples
ecosia("My search query") # opens default browser
url = ecosia("My search query"; open_browser=false)
BrowserMacros.github
— Methodgithub(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @github
.
Examples
github("My search query") # opens default browser
url = github("My search query"; open_browser=false)
BrowserMacros.goodreads
— Methodgoodreads(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @goodreads
.
Examples
goodreads("My search query") # opens default browser
url = goodreads("My search query"; open_browser=false)
BrowserMacros.google
— Methodgoogle(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @google
.
Examples
google("My search query") # opens default browser
url = google("My search query"; open_browser=false)
BrowserMacros.issue
— Function@issue f(args...)
Open a draft for a GitHub issue in the repository of function f
in the default browser. The issue still needs to be manually submitted.
Keyword arguments
text
: Text for the issue body. Defaults to a reminder to check open issues.status
: Summarize project status usingPkg.status
. Defaults totrue
.versioninfo
: Summarize Julia version usingversioninfo
. Defaults totrue
.verbose
: Verbosity ofversioninfo
. Defaults tofalse
.footer
: Prints BrowserMacros footer. Defaults totrue
.
Examples
@issue sqrt(5.0)
Pre-fill the issue with your own text:
@issue text="My text" open_browser=false status=false versioninfo=false footer=false sqrt(5)
BrowserMacros.juliahub
— Methodjuliahub(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @juliahub
.
Examples
juliahub("My search query") # opens default browser
url = juliahub("My search query"; open_browser=false)
BrowserMacros.qwant
— Methodqwant(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @qwant
.
Examples
qwant("My search query") # opens default browser
url = qwant("My search query"; open_browser=false)
BrowserMacros.scholar
— Methodscholar(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @scholar
.
Examples
scholar("My search query") # opens default browser
url = scholar("My search query"; open_browser=false)
BrowserMacros.stackoverflow
— Methodstackoverflow(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @stackoverflow
.
Examples
stackoverflow("My search query") # opens default browser
url = stackoverflow("My search query"; open_browser=false)
BrowserMacros.webarchive
— Methodwebarchive(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @webarchive
.
Examples
webarchive("My search query") # opens default browser
url = webarchive("My search query"; open_browser=false)
BrowserMacros.wikipedia
— Methodwikipedia(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @wikipedia
.
Examples
wikipedia("My search query") # opens default browser
url = wikipedia("My search query"; open_browser=false)
BrowserMacros.wolframalpha
— Methodwolframalpha(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @wolframalpha
.
Examples
wolframalpha("My search query") # opens default browser
url = wolframalpha("My search query"; open_browser=false)
BrowserMacros.wwwhich
— Functionwwwhich(f, (types,))
@which
using the power of the world-wide-web. Opens a GitHub tab in the default browser that points to the line of code returned by which
.
Examples
julia> wwwhich(sqrt, (Float32,))
julia> url = wwwhich(sqrt, (Float32,); open_browser=false)
See also: which
.
BrowserMacros.yahoo
— Methodyahoo(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @yahoo
.
Examples
yahoo("My search query") # opens default browser
url = yahoo("My search query"; open_browser=false)
BrowserMacros.yandex
— Methodyandex(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @yandex
.
Examples
yandex("My search query") # opens default browser
url = yandex("My search query"; open_browser=false)
BrowserMacros.youtube
— Methodyoutube(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @youtube
.
Examples
youtube("My search query") # opens default browser
url = youtube("My search query"; open_browser=false)
BrowserMacros.zulip
— Methodzulip(query::String)
Open a tab with the specified search query in the default browser. Also usable as the macro @zulip
.
Examples
zulip("My search query") # opens default browser
url = zulip("My search query"; open_browser=false)
BrowserMacros.@arxiv
— Macro@arxiv query
Open a tab with the specified search query in the default browser. Also usable as the function arxiv
.
Examples
@arxiv "My search query" # opens default browser
url = @arxiv open_browser=false "My search query"
BrowserMacros.@baidu
— Macro@baidu query
Open a tab with the specified search query in the default browser. Also usable as the function baidu
.
Examples
@baidu "My search query" # opens default browser
url = @baidu open_browser=false "My search query"
BrowserMacros.@bing
— Macro@bing query
Open a tab with the specified search query in the default browser. Also usable as the function bing
.
Examples
@bing "My search query" # opens default browser
url = @bing open_browser=false "My search query"
BrowserMacros.@brave
— Macro@brave query
Open a tab with the specified search query in the default browser. Also usable as the function brave
.
Examples
@brave "My search query" # opens default browser
url = @brave open_browser=false "My search query"
BrowserMacros.@chatgpt
— Macro@chatgpt query
Open a tab with the specified search query in the default browser. Also usable as the function chatgpt
.
Examples
@chatgpt "My search query" # opens default browser
url = @chatgpt open_browser=false "My search query"
BrowserMacros.@ddg
— Macro@ddg query
Open a tab with the specified search query in the default browser. Also usable as the function ddg
.
Examples
@ddg "My search query" # opens default browser
url = @ddg open_browser=false "My search query"
BrowserMacros.@discourse
— Macro@discourse query
Open a tab with the specified search query in the default browser. Also usable as the function discourse
.
Examples
@discourse "My search query" # opens default browser
url = @discourse open_browser=false "My search query"
BrowserMacros.@ecosia
— Macro@ecosia query
Open a tab with the specified search query in the default browser. Also usable as the function ecosia
.
Examples
@ecosia "My search query" # opens default browser
url = @ecosia open_browser=false "My search query"
BrowserMacros.@github
— Macro@github query
Open a tab with the specified search query in the default browser. Also usable as the function github
.
Examples
@github "My search query" # opens default browser
url = @github open_browser=false "My search query"
BrowserMacros.@goodreads
— Macro@goodreads query
Open a tab with the specified search query in the default browser. Also usable as the function goodreads
.
Examples
@goodreads "My search query" # opens default browser
url = @goodreads open_browser=false "My search query"
BrowserMacros.@google
— Macro@google query
Open a tab with the specified search query in the default browser. Also usable as the function google
.
Examples
@google "My search query" # opens default browser
url = @google open_browser=false "My search query"
BrowserMacros.@juliahub
— Macro@juliahub query
Open a tab with the specified search query in the default browser. Also usable as the function juliahub
.
Examples
@juliahub "My search query" # opens default browser
url = @juliahub open_browser=false "My search query"
BrowserMacros.@qwant
— Macro@qwant query
Open a tab with the specified search query in the default browser. Also usable as the function qwant
.
Examples
@qwant "My search query" # opens default browser
url = @qwant open_browser=false "My search query"
BrowserMacros.@scholar
— Macro@scholar query
Open a tab with the specified search query in the default browser. Also usable as the function scholar
.
Examples
@scholar "My search query" # opens default browser
url = @scholar open_browser=false "My search query"
BrowserMacros.@stackoverflow
— Macro@stackoverflow query
Open a tab with the specified search query in the default browser. Also usable as the function stackoverflow
.
Examples
@stackoverflow "My search query" # opens default browser
url = @stackoverflow open_browser=false "My search query"
BrowserMacros.@webarchive
— Macro@webarchive query
Open a tab with the specified search query in the default browser. Also usable as the function webarchive
.
Examples
@webarchive "My search query" # opens default browser
url = @webarchive open_browser=false "My search query"
BrowserMacros.@wikipedia
— Macro@wikipedia query
Open a tab with the specified search query in the default browser. Also usable as the function wikipedia
.
Examples
@wikipedia "My search query" # opens default browser
url = @wikipedia open_browser=false "My search query"
BrowserMacros.@wolframalpha
— Macro@wolframalpha query
Open a tab with the specified search query in the default browser. Also usable as the function wolframalpha
.
Examples
@wolframalpha "My search query" # opens default browser
url = @wolframalpha open_browser=false "My search query"
BrowserMacros.@wwwhich
— Macro@wwwhich f(args...)
@which
using the power of the world-wide-web. Opens a GitHub tab in the default browser that points to the line of code returned by @which
.
Examples
julia> @wwwhich sqrt(5.0)
julia> url = @wwwhich open_browser=false sqrt(5.0)
See also: @which
.
BrowserMacros.@yahoo
— Macro@yahoo query
Open a tab with the specified search query in the default browser. Also usable as the function yahoo
.
Examples
@yahoo "My search query" # opens default browser
url = @yahoo open_browser=false "My search query"
BrowserMacros.@yandex
— Macro@yandex query
Open a tab with the specified search query in the default browser. Also usable as the function yandex
.
Examples
@yandex "My search query" # opens default browser
url = @yandex open_browser=false "My search query"
BrowserMacros.@youtube
— Macro@youtube query
Open a tab with the specified search query in the default browser. Also usable as the function youtube
.
Examples
@youtube "My search query" # opens default browser
url = @youtube open_browser=false "My search query"
BrowserMacros.@zulip
— Macro@zulip query
Open a tab with the specified search query in the default browser. Also usable as the function zulip
.
Examples
@zulip "My search query" # opens default browser
url = @zulip open_browser=false "My search query"