osyo-manga / vim-snowdrop

libclang in Vim
21 stars 1 forks source link

Provide English translation for the documentation #4

Closed bchretien closed 10 years ago

bchretien commented 10 years ago

My Japanese is a bit rusty, so the current documentation can be difficult to understand :sweat_smile:

I also found an error in snowdrop.jax while trying to get the plugin working:

    let g:snowdrop#include_paths = [
    \   "cpp" : [
    \       "C:/MinGW/lib/gcc/mingw32/4.6.2/include/c++",
    \       "C:/cpp/boost",
    \       "C:/cpp/sprout",
    \   ]
    \]

which should be (at least with my Vim version):

    let g:snowdrop#include_paths = {
    \   "cpp" : [
    \       "C:/MinGW/lib/gcc/mingw32/4.6.2/include/c++",
    \       "C:/cpp/boost",
    \       "C:/cpp/sprout",
    \   ]
    \}

(but apparently you changed that in the last commits: https://github.com/osyo-manga/vim-snowdrop/commit/048b57df61728be97af663d1e466f7f785bc1929)

osyo-manga commented 10 years ago

Thanks for issues :)