less -Sが機能しない

less -Sが機能しない

less私がless -S何を試しても、それは私にはうまくいきませんでした。フラグを使用すると、コマンドライン-Sで指定するかプログラムで指定するか(-S<CR>lessで入力)、行は新しい行に進み、下の行につながります。

私が使用している端末エミュレータの場合は、urxvt重要な場合は次のオプションを使用できます。

rxvt-unicode (urxvt) v9.19 - released: 2013-10-27
options: perl,xft,styles,combining,blink,iso14755,unicode3,encodings=eu+vn+jp+jp-ext+kr+zh+zh-ext,fade,transparent, tint,pixbuf,XIM,frills,selectionscrolling, wheel,slipwheel,smart-resizecursorBlink,pointerBlank,scrollbars=plain+rxvt+NeXT+xterm

この場所は次のとおりです.Xdefaults

URxvt.depth:                32
URxvt.geometry:             90x30
URxvt.transparent:          false
URxvt.fading:               0
URxvt.loginShell:           true
URxvt.saveLines:            50
URxvt.internalBorder:       3
URxvt.lineSpace:            -7

! Fonts
URxvt*font: xft:Monospace:pixelsize=20
URxvt*boldFont: xft:Monospace:pixelsize=20:style=bold
! Fix font space
URxvt*letterSpace: -1

それ以外に、他のカラースキームオプションもあります。

それもgnome-terminal適用されないので、おそらく何の関係もないかもしれませんurxvt

編集する:

less --version与えられたless 458 (GNU regular expressions)

設定も$lessありません$LESS

ベストアンサー1

lessmdpcの提案に従ってエイリアスを調べたところ、私の.bashrcにエイリアスがあり、less -r色が表示されないことがわかりました。このエイリアスを削除して-rフラグを削除すると、問題が解決され、-Sフラグが期待どおりに機能します。

からman less

 -r or --raw-control-chars
          Causes "raw" control characters to be displayed.  The default is to display control characters using the caret  nota-
          tion;  for  example,  a control-A (octal 001) is displayed as "^A".  Warning: when the -r option is used, less cannot
          keep track of the actual appearance of the screen (since this depends on how the screen responds to each type of con-
          trol character).  Thus, various display problems may result, such as long lines being split in the wrong place.

だから当然-r壊れたようです-S

おすすめ記事