Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 66341 | Differences between
and this patch

Collapse All | Expand All

(-)vimspell.vim (-2 / +1 lines)
Lines 529-536 Link Here
529
  elseif b:spell_executable == "aspell"
529
  elseif b:spell_executable == "aspell"
530
    " Thanks to Alexandre Beneteau <alexandre.beneteau@wanadoo.fr> for showing
530
    " Thanks to Alexandre Beneteau <alexandre.beneteau@wanadoo.fr> for showing
531
    " me a way to get aspell directory for dictionaries.
531
    " me a way to get aspell directory for dictionaries.
532
    let l:dirs = system('aspell config | '. s:grep . ' "dict-dir current"')
532
    let l:dirs = system('aspell config dict-dir')
533
    let l:dirs = substitute(l:dirs,'^.*dict-dir current: \(\/.*\)','\1',"")
534
    "don't know, why there is a <NUL> char at the end of line ? Get rid of it.
533
    "don't know, why there is a <NUL> char at the end of line ? Get rid of it.
535
    let l:dirs = substitute(l:dirs,".$","","")
534
    let l:dirs = substitute(l:dirs,".$","","")
536
535

Return to bug 66341