2

我正在使用 SUSE Linux Enterprise Desktop 11 (x86_64),我在终端中使用 Vim 作为我的编辑器。我最近从https://github.com/itchyny/lightline.vim安装了一个名为lightline的插件。该插件使用特殊字符使状态行如下所示:

在此处输入图像描述

栏的 > 部分实际上是 ► 字符,其颜色类似于它旁边的正方形。问题是,就我而言,酒吧看起来像这样:

在此处输入图像描述

尽管编码设置为 UTF-8 并且系统上安装了所有必需的字体(用于电力线的字体),但 ► 字符未正确显示。在这种情况下,终端上设置的字体是 Liberation Mono for Powerline。

我的 vimrc 中的 Lightline 设置:

set encoding=utf-8
scriptencoding utf-8

let g:lightline = {
   \ 'colorscheme': 'wombat',
   \ 'separator': {'left': "\u25B6", 'right': ''},
   \ 'subseparator': { 'left': '', 'right': ''}
   \ }

我也尝试像这样复制 ► 字符

let g:lightline = {
       \ 'colorscheme': 'wombat',
       \ 'separator': {'left': "►", 'right': ''},
       \ 'subseparator': { 'left': '', 'right': ''}
       \ }

但它以同样的方式表现出来。

此外,在应该有空格的地方存在 ^ 字符的问题。

有什么解决办法吗?

4

2 回答 2

3

以下是我用于 lightline 的 my_configs.vim,它在我的 Fedora 26 系统中完美运行。

let g:lightline = { 
       \ 'colorscheme': 'wombat',
       \ }

let g:lightline = { 
       \ 'colorscheme': 'wombat',
       \ 'active': {
       \   'left': [ ['mode', 'paste'],
       \             ['fugitive', 'readonly', 'filename', 'modified'] ],
       \   'right': [ [ 'lineinfo' ], ['percent'] ]
       \ },
       \ 'component': {
       \   'readonly': '%{&filetype=="help"?"":&readonly?"\ue0a2":""}',
       \   'modified': '%{&filetype=="help"?"":&modified?"\ue0a0":&modifiable?"":"-"}',
       \   'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}'
       \ },
       \ 'component_visible_condition': {
       \   'readonly': '(&filetype!="help"&& &readonly)',
       \   'modified': '(&filetype!="help"&&(&modified||!&modifiable))',
       \   'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())'
       \ },
       \ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" },
       \ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" }
       \ }   "" This is comment: I fotgot this line in my last post, just added

抱歉我的错误,我刚刚修复了这个配置。如果您从https://github.com/chrissimpkins/Hack/releases安装了 hack 字体 并在 Fedora 26 系统中通过命令“sudo dnf install powerline-fonts”安装 powerline-fonts,您可能希望将以下配置添加到您的 /等/字体/local.conf

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
  <alias>
    <family>Hack</family>
    <prefer>
      <family>PowerlineSymbols</family>
    </prefer>
  </alias>
</fontconfig>
于 2017-07-18T14:37:51.223 回答
0

此线程 stackoverflow.com/questions/7223309/ 中解释了该问题。它说如果stl和stlnc具有相同的值,它们将被替换为^^^。当您将 * 用于 stlnc 并将空格用于 stl 时,它会起作用。

于 2016-02-28T11:24:50.700 回答