2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

リモートサーバのhub browseでMacのブラウザのGithubを開く

Last updated at Posted at 2014-07-05

はじめに

hub browse 便利ですよね。
ただ一つだけ問題なのはリモートサーバからではMacのブラウザ開けないことです。
今まではexport BROWSER=echoと設定してURLをechoして⌘+クリックして開いてました。

iTerm2の設定をいろいろ弄っていたところ、Triggers機能とCoprocess機能でこれが実現できたので紹介します。

想定環境

  • MacのiTerm2からsshでサーバに入り操作
  • サーバにはhubコマンドがインストール済み

設定

まずiterm-https://~というURL schemaをechoするシェルスクリプトを作ります。

iterm
# !/bin/sh
echo "iterm-$@"
clear

これを実行権限を与えてPATHの通った場所に置き、BROWSERに指定します。

chmod +x iterm
mv iterm /path/to/bin/
echo "export BROWSER=iterm" >> ~/.zshrc

続いてiTerm2の環境設定を開き、Profiles > Advanced > Triggers を開きます。
ここに以下の様な設定を追加します。

Regular Expression Action Parameters
iterm-(https?://[\w/:%#$&?()~.=+-]+) Run Coprocess... open \1

スクリーンショット 2014-07-05 19.30.49.png

以上でOKです。
hub browseでMacのブラウザが起動するようになりました!

しくみ

iTerm2のTriggers機能はターミナル画面を監視して、設定した正規表現に対してActionを起こします。
Actionに設定したRun CoprocessというiTerm2の機能は、コプロセスを Mac上 で実行します。

今回はiterm-https://~という文字に反応してhttps://~部分を引数にopenコマンドを実行するように設定しています。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?