私は@grgarsideによって投稿hereを読む。彼は、Unicode文字だけであるように見える美しいラベルのコマンドで質問に答えました。テキストモードグラフィックはどのように作成しますか?
┌── ln(1) link, ln -- make links
│ ┌── Create a symbolic link.
│ │ ┌── the path to the intended symlink
│ │ │ can use . or ~ or other relative paths
│ │ ┌─────┴────────┐
ln -s /path/to/original /path/to/symlink
└───────┬───────┘
└── the path to the original file/folder
can use . or ~ or other relative paths
どうやってこれをやったのですか?彼が手動でテキストエディタにすべてのものを入力したと信じるのは難しいようです。このようなグラフィックを簡単に作成できるUnicodeエディタがありますか?
編集:私のKeyboard-en.plist
ファイルがわずかに異なる場所にあることを除いて、@ grgarsideの指示どおり 、:
Resources ❯ readlink Keyboard-en.plist
/System/Library/Input Methods/PressAndHold.app/Contents/Resources/Keyboard-en.plist
と、ファイルの先頭に向けて追加して(私は必要なことに注意してください私は答えを書いた一人です
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Roman-Accent-k</key>
<dict>
<key>Direction</key>
<string>right</string>
<key>Keycaps</key>
<string>└ ─ ┬ ┘ ┌ ┴ ┐</string>
<key>Strings</key>
<string>└ ─ ┬ ┘ ┌ ┴ ┐</string>
</dict>
<key>Roman-Accent-A</key>
<dict>
<key>Direction</key>
<string>right</string>
<key>Keycaps</key>
<string>A À Á Â Ä Æ Ã Å Ā</string>
<key>Strings</key>
<string>A À Á Â Ä Æ Ã Å Ā</string>
</dict>
...
</dict>
</plist>
このASCIIアートを呼び出すかもしれませんが、文字はASCIIではありません。しかし、IBM PCなど、ASCIIを使用していないシステムには何十年も前に戻っています。もちろん、これらの文字は、特殊なシナリオや古風なシナリオを除き、どこにでも使用している文字セット(このWebサイトを含む)のUnicode(それ自体は25歳)に組み込まれています。 –
ありがとう@TomBlodget、私は適切に自分の質問を編集しました。 – mbigras
https://en.wikipedia.org/wiki/Box-drawing_character –