From 18fb9ce3104278bc5e70707fe592acbcd7ef5fb2 Mon Sep 17 00:00:00 2001 From: agrexgh Date: Wed, 3 Jun 2020 17:51:47 +0900 Subject: [PATCH] =?UTF-8?q?#120=20A1=E7=AB=A0=E5=88=86=E5=AE=9F=E6=96=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- book/A-git-in-other-environments/sections/guis.asc | 4 ++-- book/A-git-in-other-environments/sections/zsh.asc | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/book/A-git-in-other-environments/sections/guis.asc b/book/A-git-in-other-environments/sections/guis.asc index ad0e154..730a1e5 100644 --- a/book/A-git-in-other-environments/sections/guis.asc +++ b/book/A-git-in-other-environments/sections/guis.asc @@ -74,8 +74,8 @@ Gitkのインターフェイスは次のようになっています。 .The `gitk` history viewer. image::images/gitk.png[The `gitk` history viewer.] ////////////////////////// -.`gitk`の歴史ビューアー -image::images/gitk.png[`gitk`の歴史ビューアー] +.`gitk` の歴史ビューアー +image::images/gitk.png[`gitk` の歴史ビューアー] ////////////////////////// On the top is something that looks a bit like the output of `git log --graph`; each dot represents a commit, the lines represent parent relationships, and refs are shown as colored boxes. diff --git a/book/A-git-in-other-environments/sections/zsh.asc b/book/A-git-in-other-environments/sections/zsh.asc index 0dd2cc1..567db61 100644 --- a/book/A-git-in-other-environments/sections/zsh.asc +++ b/book/A-git-in-other-environments/sections/zsh.asc @@ -10,7 +10,7 @@ To use it, simply run `autoload -Uz compinit && compinit` in your `.zshrc`. Zsh's interface is a bit more powerful than Bash's: ////////////////////////// Zshには、Git用のタブ補完ライブラリも同梱されています。 -`.zshrc`に`autoload -Uz compinit && compinit`という行を追加するだけで、使えるようになります。 +`.zshrc` に `autoload -Uz compinit && compinit` という行を追加するだけで、使えるようになります。 Zshのインターフェイスは、Bashよりさらに強力です。 [source,console] @@ -68,14 +68,14 @@ image::images/zsh-prompt.png[カスタマイズされた `zsh` のプロンプ ////////////////////////// For more information on `vcs_info`, check out its documentation in the `zshcontrib(1)` manual page, or online at http://zsh.sourceforge.net/Doc/Release/User-Contributions.html#Version-Control-Information[]. ////////////////////////// -`vcs_info` についての詳細は、`zshcontrib(1)`マニュアルにあるドキュメントか、オンラインであれば http://zsh.sourceforge.net/Doc/Release/User-Contributions.html#Version-Control-Information[] を確認してみてください。 +`vcs_info` についての詳細は、`zshcontrib(1)` マニュアルにあるドキュメントか、オンラインであれば http://zsh.sourceforge.net/Doc/Release/User-Contributions.html#Version-Control-Information[] を確認してみてください。 ////////////////////////// Instead of `vcs_info`, you might prefer the prompt customization script that ships with Git, called `git-prompt.sh`; see https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh[] for details. `git-prompt.sh` is compatible with both Bash and Zsh. ////////////////////////// -一方、Gitに同梱されている`git-prompt.sh`というスクリプトでも、プロンプトをカスタマイズすることができます。 `vcs_info` よりも気に入るかもしれませんね。詳しくは https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh[] を確認してみてください。 -`git-prompt.sh`はBashとZshの両方に対応しています。 +一方、Gitに同梱されている `git-prompt.sh` というスクリプトでも、プロンプトをカスタマイズすることができます。 `vcs_info` よりも気に入るかもしれませんね。詳しくは https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh[] を確認してみてください。 +`git-prompt.sh` はBashとZshの両方に対応しています。 ////////////////////////// Zsh is powerful enough that there are entire frameworks dedicated to making it better.