gabrielelana / vim-markdown

Markdown for Vim: a complete environment to create Markdown files with a syntax highlight that doesn't suck!
MIT License
740 stars 59 forks source link

highlighting words of each line #49

Closed ghost closed 8 years ago

ghost commented 8 years ago

Hello,

I'm having the following issue. I'm editing a markdown file and it's highlighting words making it difficult to read. See image below screen shot 2016-07-21 at 1 52 57 pm Here is my vim :version info

VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jul 21 2016 13:16:25)
Included patches: 1-2089
Compiled by bpatrick
Huge version without GUI.  Features included (+) or not (-):
+acl             +cindent         +cryptv          -ebcdic          +float           +job             +localmap        -mouse_gpm       +multi_lang      +postscript      +ruby            +tag_binary      +timers          +viminfo         -xim
+arabic          -clientserver    +cscope          +emacs_tags      +folding         +jumplist        -lua             -mouse_jsbterm   -mzscheme        +printer         +scrollbind      +tag_old_static  +title           +vreplace        -xsmp
+autocmd         -clipboard       +cursorbind      +eval            -footer          +keymap          +menu            +mouse_netterm   +netbeans_intg   +profile         +signs           -tag_any_white   -toolbar         +wildignore      -xterm_clipboard
-balloon_eval    +cmdline_compl   +cursorshape     +ex_extra        +fork()          +langmap         +mksession       +mouse_sgr       +num64           +python          +smartindent     -tcl             +user_commands   +wildmenu        -xterm_save
-browse          +cmdline_hist    +dialog_con      +extra_search    +gettext         +libcall         +modify_fname    -mouse_sysmouse  +packages        -python3         +startuptime     +termguicolors   +vertsplit       +windows         -xpm
++builtin_terms  +cmdline_info    +diff            +farsi           -hangul_input    +linebreak       +mouse           +mouse_urxvt     +path_extra      +quickfix        +statusline      +terminfo        +virtualedit     +writebackup
+byte_offset     +comments        +digraphs        +file_in_path    +iconv           +lispindent      -mouseshape      +mouse_xterm     -perl            +reltime         -sun_workshop    +termresponse    +visual          -X11
+channel         +conceal         -dnd             +find_in_path    +insert_expand   +listcmds        +mouse_dec       +multi_byte      +persistent_undo +rightleft       +syntax          +textobjects     +visualextra     -xfontset
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"

and here are the plugins I have installed:

Plug 'wincent/command-t', {
    \   'do': 'cd ruby/command-t && ruby extconf.rb && make'
    \ }
Plug 'scrooloose/nerdcommenter'
Plug 'itchyny/lightline.vim'
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'chrisbra/vim-diff-enhanced'
Plug 'ervandew/supertab'
Plug 'mhinz/vim-signify'
Plug 'davidhalter/jedi-vim'
Plug 'xolox/vim-session'
Plug 'xolox/vim-misc'
Plug 'drmikehenry/vim-fixkey'
Plug 'Valloric/YouCompleteMe'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'jiangmiao/auto-pairs'
Plug 'craigemery/vim-autotag'
Plug 'drmikehenry/vim-fixkey'

I am also using the tomorrow-them for vim

I would like to know how to remove this highlighting

gabrielelana commented 8 years ago

That’s the vim spell checker. The pink background it's highlighting a spell error. You could either

If you don't know what to choose, choose solution number 2

Let me know if this works for you

ghost commented 8 years ago

This seems to have solved the issue. Thanks!

gabrielelana commented 8 years ago

You're welcome 😉

tecfu commented 6 years ago

Would be helpful to put a comment somewhere in the README about this.