我阅读了@grgarside的帖子here。他使用看起来只有Unicode字符的命令回答了一个带有精美标记命令的问题:
unstack(df, 'year') # practice required by the code above
他是怎么做到的?似乎很难相信他手动将整个事物输入到文本编辑器中。是否有某种类型的Unicode编辑器可以轻松创建这样的图形?
修改
根据@ grgarside的说明,除了我的final String content;
try {
content = response.body().string();
} catch (IOException e) {
content = "";
// Handle exception
}
runOnUiThread(new Runnable() {
@Override
public void run() {
TextView text = (TextView)findViewById(R.id.textView);
text.setText(content);
}
});
文件位置略有不同之外:
┌── 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
并添加到文件顶部(注意我需要使用Keyboard-en.plist
作为崇高,即使使用Resources ❯ readlink Keyboard-en.plist
/System/Library/Input Methods/PressAndHold.app/Contents/Resources/Keyboard-en.plist
也不允许我保存文件:
sudo vim Keyboard-en.plist
答案 0 :(得分:2)
我是那个写有问题的答案的人,我确实是手动制作的。我使用PressAndHold.app(macOS的一部分)通过在键盘上按住一个字符来快速添加unicode来插入字符。
您可以在位于/System/Library/Input Methods/PressAndHold.app/Contents/Resources/Keyboard-en.plist
的相关键盘乐谱中使用以下内容,以便自己使用相同的内容。在我的plist中,我将'k'设置为关键。
<key>Roman-Accent-k</key>
<dict>
<key>Direction</key>
<string>right</string>
<key>Keycaps</key>
<string>└ ─ ┬ ┘ ┌ ┴ ┐</string>
<key>Strings</key>
<string>└ ─ ┬ ┘ ┌ ┴ ┐</string>
</dict>
答案 1 :(得分:0)
我个人只是使用Wikipedia page on unicode box-drawing characters将这些行复制粘贴到我的答案中,以便撰写javascript can't access private properties和Does javascript process using an elastic racetrack algorithm等答案。
是的,它并不像实现自定义键盘绑定那样华丽,但我想我只需要写下这个答案,说是的,有些人只使用互联网手动制作答案和Stackoverflow& #39; s&#34;你的答案&#34;文本区域。