We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the following minimal vimrc:
set nocompatible let $DOTVIM = expand('$HOME/.config/nvim') if has('vim_starting') execute 'set runtimepath+=' . expand( \ '$DOTVIM/bundle/repos/github.com/Shougo/dein.vim') endif let g:dein#enable_name_conversion = 1 if dein#load_state(expand('$DOTVIM/bundle/')) call dein#begin(expand('$DOTVIM/bundle/')) call dein#add('gabrielelana/vim-markdown', {'on_ft' : 'markdown'}) call dein#end() call dein#save_state() endif filetype plugin indent on syntax enable set linebreak let g:markdown_enable_spell_checking = 0
When opening a split window then urls are wrongly highlighted:
Removing the set linebreak option fixes the problem but I want to keep that option. Thanks in advance for looking into this.
set linebreak
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following minimal vimrc:
When opening a split window then urls are wrongly highlighted:
![screenshot_2018-11-24_17 45 34](https://user-images.githubusercontent.com/2583971/48972771-b9136880-f010-11e8-9fb2-671f319d0432.png)
Removing the
set linebreak
option fixes the problem but I want to keep that option.Thanks in advance for looking into this.
The text was updated successfully, but these errors were encountered: