You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched through the closed issues to see if there is an existing solution for my issue
Terminal Emulator Info
Terminal emulator(s) and their version(s) used, if applicable: alacritty 0.10.1
nvim --version
NVIM v0.7.0
Build type: Release
LuaJIT 2.1.0-beta3
Compiled by builduser
Features: +acl +iconv +tui
See ":help feature-compile"
system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "/usr/share/nvim"
Run :checkhealth for more info
minimal .vimrc
call plug#begin()
Plug 'vim-airline/vim-airline'
Plug 'joshdick/onedark.vim'
call plug#end()
filetype plugin indent on
set completeopt=menuone,menu
let g:airline_theme='onedark'
Issue Description
I've encountered weird behaviors with how the color of the file name in Airline is changed depending on if the file being opened is a .vim file or not
expected behavior
open any file, change the file's content
filename turns to yellow
actual behavior/replication
open any .vim file, change the content
filename turns to yellow (as expected)
open any file that's not .vim, change the content
filename's color doesn't change
:AirlineRefresh doesn't have any effect until i open a vim file with :e anyname.vim and :AirlineRefresh. Then do i get the correct modified filename's color for every files
open any .vim file, then open any non .vim file (:e name.sh), change either content
modified non .vim file changes color
open any non .vim file, change the content
modified non .vim file doesn't changes color
The text was updated successfully, but these errors were encountered:
Have you had this issue with any other colorschemes?
onedark.vim has no special interaction with airline aside from setting global variables for its theme colors (nothing conditional based on file extensions, etc...), so I can't tell whether the issue is a onedark.vim issue or an airline one.
Terminal Emulator Info
Terminal emulator(s) and their version(s) used, if applicable:
alacritty 0.10.1
nvim --version
minimal
.vimrc
Issue Description
I've encountered weird behaviors with how the color of the file name in Airline is changed depending on if the file being opened is a
.vim
file or notexpected behavior
actual behavior/replication
.vim
file, change the content.vim
, change the content:AirlineRefresh
doesn't have any effect until i open a vim file with:e anyname.vim
and:AirlineRefresh
. Then do i get the correct modified filename's color for every files.vim
file, then open any non.vim
file (:e name.sh
), change either content.vim
file changes color.vim
file, change the content.vim
file doesn't changes colorThe text was updated successfully, but these errors were encountered: