Ranger

從遊俠文件管理器中刪除最左邊的列

  • March 21, 2021

有一種方法可以刪除最右邊的列:

# Preview files on the rightmost column?
# And collapse (shrink) the last column if there is nothing to preview?
set preview_files false
set preview_directories false
set collapse_preview true

但是如何刪除顯示父目錄的最左邊的列?

我知道我可以set viewmode=multipane用來獲取單列。但在這種情況下,當我使用兩個選項卡時,我會在同一個螢幕中為兩個選項卡獲得兩列。我希望每個選項卡都有一個螢幕,但我希望每個螢幕都由單列組成。我該如何做到這一點?

您可以使用列比率來隱藏最左側的列:

set column_ratios 0

除了Stephen Kitt 的回答之外,您可能還需要設置以下選項,以消除折疊預覽窗格所在右側的小間隙:

set padding_right false

引用自:https://unix.stackexchange.com/questions/557861