BrowserMacros.arxivMethod
arxiv(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.baiduMethod
baidu(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.bingMethod
bing(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.braveMethod
brave(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.chatgptMethod
chatgpt(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.ddgMethod
ddg(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.discourseMethod
discourse(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.ecosiaMethod
ecosia(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.githubMethod
github(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.goodreadsMethod
goodreads(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.googleMethod
google(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.issueFunction
@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 using Pkg.status. Defaults to true.
  • versioninfo: Summarize Julia version using versioninfo. Defaults to true.
  • verbose: Verbosity of versioninfo. Defaults to false.
  • footer: Prints BrowserMacros footer. Defaults to true.

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.juliahubMethod
juliahub(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.qwantMethod
qwant(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.scholarMethod
scholar(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.stackoverflowMethod
stackoverflow(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.webarchiveMethod
webarchive(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.wikipediaMethod
wikipedia(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.wolframalphaMethod
wolframalpha(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.wwwhichFunction
wwwhich(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.yahooMethod
yahoo(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.yandexMethod
yandex(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.youtubeMethod
youtube(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.zulipMethod
zulip(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.@arxivMacro
@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.@baiduMacro
@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.@bingMacro
@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.@braveMacro
@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.@chatgptMacro
@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.@ddgMacro
@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.@discourseMacro
@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.@ecosiaMacro
@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.@githubMacro
@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.@goodreadsMacro
@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.@googleMacro
@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.@juliahubMacro
@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.@qwantMacro
@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.@scholarMacro
@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.@stackoverflowMacro
@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.@webarchiveMacro
@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.@wikipediaMacro
@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.@wolframalphaMacro
@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.@wwwhichMacro
@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.@yahooMacro
@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.@yandexMacro
@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.@youtubeMacro
@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.@zulipMacro
@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"