如何直接从Atom打开链接?

时间:2015-07-28 10:22:57

标签: atom-editor

我在构建简单原型的过程中经常使用Colorzilla,无论如何我可以直接在Atom中键入命令来打开某个网站链接吗?类似的东西:

link:open-colorzilla

而不是在某些代码段文件中我将colorzilla设置为http://www.colorzilla.com/gradient-editor/

这是可能的,因为这很棒。

4 个答案:

答案 0 :(得分:2)

它可能与您上面描述的方式完全不同,但browser-plus包可能适用于您的情况。

它将在您的Atom实例中打开浏览器,允许您直接从Atom中浏览Web。有一些默认的键盘快捷键可以打开常用的网站,如Stack Overflow,Google或DevDocs,它允许您定义自己喜欢的自定义URL( Ctrl + F4 ) - 您可以将其配置为打开Colorzilla。

同样,它并不是你正在寻找的100%,但它非常接近。

答案 1 :(得分:1)

但是当我向搜索引擎询问如何将Atom中已编辑文本的URL直接打开到外部浏览器时,我发现了这个问题。

如果你也搜索了这个,我想告诉你一些小open-path插件。它通过Mac / cmd上的双键组合和Windows / Linux上的ctrl-o(默认情况下)在光标下打开文件或URL。此外,如果您需要,它会复制图像大小:)

答案 2 :(得分:0)

我正在使用flex-tool-bar plugin(需要安装tool-bar package),这会生成自定义按钮。您可以从免费的最大图书馆中选择不同的图标。

例如,我正在使用按钮:在外部浏览器中打开优先级URL,git diff,js beautify,markdown,restart atom按钮等。 我的设置:

[
  {
    type: "button"
    icon: "document"
    callback: "application:new-file"
    tooltip: "New File"
    iconset: "ion"
  }
  {
    type: "button"
    icon: "folder"
    callback: "application:open-file"
    tooltip: "Open..."
    iconset: "ion"
  }
  {
    type: "button"
    icon: "save"
    callback: "core:save"
    tooltip: "Save"
    iconset: "fa"
  }
  {
    type: "spacer"
  }

  {
    type: "button"
    icon: "columns"
    iconset: "fa"
    callback: ["pane:split-right", "pane:split-right"]
  }

  {
    type: "button"
    icon: "fire"
    callback: "atom-beautify:beautify-editor"
    tooltip: "JS beautify"
    iconset: "fa"
  }

  {
    type: "button"
    icon: "shuffle"
    callback: "git-diff:toggle-diff-list"
    iconset: "ion"
  }

  {
    type: "spacer"
  }

    {
      type: "button"
      icon: "markdown"
      callback: "markdown-preview:toggle"
      disable: "!markdown"
    }

  {
    type: "url"
    icon: "bitbucket"
    url: "https://bitbucket.org/dashboard/repositories"
    tooltip: "My bitbucket repos"
    iconset: "fa"
  }

  {
    type: "url"
    icon: "fighter-jet"
    url: "https://***.atlassian.net/secure/***"
    tooltip: "Jira My Board"
    iconset: "fa"
  }

  {
    type: "url"
    icon: "wink"
    url: "https://****.world"
    tooltip: "My Production"
    iconset: "icomoon"
  }

  {
    type: "url"
    icon: "glass2"
    url: "https://***.world/explore/"
    tooltip: "Explorer Prod"
    iconset: "icomoon"
  }

  {
    type: "spacer"
  }

  {
    type: "button"
    icon: "refresh"
    callback: "window:reload"
    tooltip: "Reload window"
    iconset: "ion"
  }

  {
    type: "button"
    icon: "gear-a"
    callback: "settings-view:open"
    tooltip: "Open Settings View"
    iconset: "ion"
  }

  {
    type: "button"
    icon: "plug"
    callback: "user:restart"
    tooltip: "Restart Atom"
  }

  {
    type: "button"
    icon: "terminal"
    callback: "command-palette:toggle"
    tooltip: "Command Palette"
  }

]

答案 3 :(得分:0)

不幸的是,原子似乎对该功能不太感兴趣,您可以在此处找到解决方案:https://atom.io/packages/url-open

  

可以将剪贴板上所有内容先拉出来,下载并打包的软件包   在原子中打开它。仅适用于http(s)链接。文件自动   关闭时删除。