web-dev-qa-db-ja.com

Vimエディターでフォントサイズを大きくする

VimでCプログラムを作成します。その中のフォントサイズは非常に小さいです。

Vimでフォントサイズを大きくするオプションはありますか?

14
Tushar Kathuria

http://vim.wikia.com/wiki/Change_font によると:

Console Vimは、コンソール/端末が使用しているフォントを使用します。 [...]

ターミナル内で実行している場合、Vimは最大で色を変更できます(ターミナルでサポートされている色の範囲内で:太字と太字の白黒、時には8色と太字/太字の前景のみ[または別の方法で表示、 8バックグラウンドと16フォアグラウンド]; X11では、一部の端末は最大256のバックグラウンドとフォアグラウンドカラーをサポートします。「色の変更」には通常、リバースビデオの使用も含まれます。特定のフォントでのみサポートされている場合)、太字、下線、斜体を使用します。

つまり、Vimエディターでフォントサイズを変更する場合は、端末のフォントサイズを変更する必要があります。 gnome-terminalでこれを行うには、EditProfile Preferencesに移動します:

Profile Preferences

さらに、これらの設定を新しい端末プロファイルに保存し、Vimの使用を開始するときにそのプロファイルを使用できます。

8
Radu Rădeanu

これは理想的な解決策ではないかもしれませんが、私には有効です。

ターミナルをズームインするだけで Ctrl+Shift++

ズームアウト Ctrl+-

17
bnjmn

Ctrl +マウスを上にスクロール
Ctrl +マウススクロールダウン。

これはほとんどの端末で機能します。

1
Q. Qiao

Xfce4ターミナルでVimを使用しています。このスクリプトをキーボードショートカットに割り当てました ctrlalt+ そして ctrlalt- それぞれscript-name --inscript-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"
1
jbrock

@Costaがコメントで言ったように、次のことができます

  1. :set guifontを実行して現在のフォントを取得します
  2. 私にとっては、それはHack 10です
  3. 次に、フォントをより大きなサイズに設定します:set guifont=Hack\ 12(スペースをエスケープするために\に注意してください)
0
Tom Saleeba