vim icon indicating copy to clipboard operation
vim copied to clipboard

vim-toml table and table array headers are displayed the same as regular text

Open jaskij opened this issue 3 years ago • 3 comments

Currently it looks like this:

image

while it should probably look like this:

image

vim-toml uses Title style for those headers so this problem is similar to asciidoc's asciidocOneLineTitle.

jaskij avatar Nov 26 '20 13:11 jaskij

You can fix this in your vimrc using the directions here. For example:

augroup nord-theme-overrides
    autocmd!
    " Use nord8 as color for toml tables
    autocmd ColorScheme nord highlight tomlTable ctermfg=8 guifg=#88C0D0
    autocmd ColorScheme nord highlight tomlTableArray ctermfg=8 guifg=#88C0D0
augroup END

squattingmonk avatar Dec 17 '20 21:12 squattingmonk

Without even digging too much into it, I've noticed a workaround for AsciiDoc and shamelessly copied it, see the pull request

jaskij avatar Dec 18 '20 03:12 jaskij

Thank you for your patience! 🙏🏼 It‘s been a while since I had free time to focus more on Nord, and my open source projects in general, and invest time in this issue due to work-life balance.

I recently published the first “Northern Post — The state and roadmap of Nord“ announcement which includes all details about the plans and future of the Nord project, including the goal of catching up with the backlog. This issue is part of the backlog and therefore I want to triage and process it to get one step closer to a “clean state“. Read the announcement about reaching the “clean“ contribution triage state in Nord‘s discussions for more details about the goal.

Therefore it has been added to the queue in the central and single-source-of-truth project board that is also described in more detail in the roadmap announcement.

@jaskij Thanks again for your contribution! Your PR #233 will be added to the queue also later for further processing.

svengreb avatar Jun 03 '23 21:06 svengreb