Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax for links doesn't get de-concealed #628

Open
GTP95 opened this issue May 11, 2023 · 0 comments
Open

Syntax for links doesn't get de-concealed #628

GTP95 opened this issue May 11, 2023 · 0 comments

Comments

@GTP95
Copy link

GTP95 commented May 11, 2023

Greetings,
I have the following .vimrc configuration file:

"Don't care about vi compatibility
set nocompatible

"Syntax highlithing
syntax on
colorscheme elflord

" Concealing
set conceallevel=2
set concealcursor="nc"

"line numbering
set number
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab

" vim-latexsuite config
filetype plugin indent on
set grepprg=grep\ -nH\ $*
let g:tex_flavor = "latex"
let g:Tex_DefaultTargetFormat='pdf'
let g:Tex_CompileRule_pdf = 'arara -v $*'
let g:Tex_SmartKeyQuote=0
set runtimepath=~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after


" spellcheck
set spelllang=en_us spell
" Put these lines at the very end of your vimrc file.

" Load all plugins now.
" Plugins need to be added to runtimepath before helptags can be generated.
packloadall
" Load all of the helptags now, after plugins have been loaded.
" All messages and errors will be ignored.
silent! helptags ALL

Despite having

set conceallevel=2
set concealcursor="nc"

the syntax for links doesn't get shown, even if I'm in insert mode and the cursor is right over the link. I didn't check if this happens also with other concealed syntax elements. Using let g:vim_markdown_conceal = 0 instead works, but then concealing is entirely turned off.
Am I missing something? What is the correct way of having the Markdown syntax de-concealed when I'm editing it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant