답변:
http://vim.wikia.com/wiki/Change_font 에 따르면 :
Console Vim은 콘솔 / 터미널이 사용하는 모든 글꼴을 사용합니다. [...]
터미널 내부에서 실행할 때 Vim은 최대로 색상을 변경할 수 있습니다 (터미널이 지원하는 색상의 제한 내에서 : 때로는 굵은 체와 굵지 않은 흑백, 종종 8 가지 색과 굵은 체 / 굵지 않은 전경 만 나타남) 8 개 배경 및 16 개 전경]; X11에서 일부 터미널은 최대 256 개의 배경색 및 전경색을 지원합니다. "색상 변경"에는 일반적으로 리버스 비디오 사용이 포함됨) 및 터미널이 지원하는 경우 (모든 터미널이 지원하지 않는 경우에도) 특정 글꼴로만 지원되는 글꼴), 굵게, 밑줄 및 / 또는 기울임 꼴을 사용하십시오.
즉, Vim 편집기에서 글꼴 크기를 변경하려면 터미널의 글꼴 크기를 변경해야합니다. gnome-terminal에서이를 수행하려면 편집 → 프로파일 환경 설정으로 이동 하십시오 .
또한 이러한 환경 설정을 새 터미널 프로파일에 저장할 수 있으며 Vim을 사용하기 시작할 때 해당 프로파일을 사용하십시오.
이것은 이상적인 해결책은 아니지만 저에게 효과적입니다.
Ctrl+ Shift+로 터미널을 확대하기 만하면 +됩니다.
Ctrl+로 축소-
Xfce4 터미널에서 Vim을 사용합니다. 나는 키보드 단축키에이 스크립트를 할당 ctrl alt +하고 ctrl alt -있는 사용됩니다 script-name --in
및 script-name --out
각각.
#!/bin/bash
# Check if Xfce4 Terminal is running. If it is not, exit.
status=$(pgrep xfce4-terminal)
if [ -z "$status" ]; then
notify-send "No Xfce4 Terminal session is open."
exit 1
fi
# 1. Get the full line. 2. Get the entire line minus font size. 3. Get only font size.
line=$(grep "FontName" ~/.config/xfce4/terminal/terminalrc)
font_name=$(echo "$line" | sed s/'\w*$'//)
font_size=$(echo "$line" | grep -oE '[^ ]+$')
# Increase or decrease font size. You might want to change this to increase and decrease by two.
if [ "$1" = "--in" ]; then
new_size=$((font_size + 1))
elif [ "$1" = "--out" ]; then
new_size=$((font_size - 1))
else
notify-send "Argument options: --in --out"
exit 1
fi
# Replace the line with the new font size.
action='s/'$font_name$font_size'/'$font_name$new_size'/'
sed -i "$action" ~/.config/xfce4/terminal/terminalrc
# Show only one notification at a time.
notify_status=$(pgrep xfce4-notifyd)
if [ -n "$notify_status" ]; then
pkill xfce4-notifyd
fi
# Show the new current font being used.
notify-send -t 200 "$new_size pt font"