prevent error when g:airline_section_x is undefined#219
Merged
ryanoasis merged 1 commit intoryanoasis:masterfrom Jan 21, 2018
Merged
prevent error when g:airline_section_x is undefined#219ryanoasis merged 1 commit intoryanoasis:masterfrom
ryanoasis merged 1 commit intoryanoasis:masterfrom
Conversation
Owner
|
Thanks, gotcha yeah I did not understand how/why that would happen but this looks like a reasonable thing to do. Worst case it won't do anything, best case would help prevent the undefined. 😄 I'll get this merged with the next cut version |
Contributor
Author
|
Great. (Greetings to Charlotte. Have been living there 20 years ago, when I participated in an exchange student program. Hope you don't suffer from the extreme cold currently in the US) |
Owner
|
Hey. Oh that's cool! I've only been here for just over 4 years. Yeah it was very unseasonably cold a while ago but back to somewhat normal now. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I don't know why this happens, but I just got a bug report vim-airline/vim-airline#1627 where an error is caused by trying to access
g:airline_section_xwhich seems to be undefined for that user.So here is a fix, that does not unconditionally access that variable, but only when it exists.
fixes vim-airline/vim-airline#1627
Thanks!