ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] .vimispell.vim
@ 2003-01-09 17:23 Alexey Tourbin
  2003-01-11 20:19 ` Pavel Shurubura
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Tourbin @ 2003-01-09 17:23 UTC (permalink / raw)
  To: community


[-- Attachment #1.1: Type: text/plain, Size: 95 bytes --]


Может кому надо... или может у кого лучше есть?


-- 
WBR, Alexey Tourbin
BIOZAK Ltd., Russia

[-- Attachment #1.2: .vimispell.vim --]
[-- Type: text/plain, Size: 4309 bytes --]

" Use ispell to highlight spellig errors
" Author: Claudio Fleiner <claudio@fleiner.com>
" Modified by Alexey Tourbin <at@turbinal.org>
" F6		- write file, spell file & highlight spelling mistakes;
"		- switch between american russianw and spelling
" 		- return to normal syntax coloring
" <ALT>I     - insert word under cursor into directory
" <ALT>U     - insert word under cursor as lowercase into directory
" <ALT>A     - accept word for this session only
" <alt>/     - check for alternatives

:function! ProposeAlternatives()
:  let @_=CheckSpellLanguage()
:  let alter=system("echo ".expand("<cword>")." | ispell -a -d ".b:language." | sed -e '/^$/d' -e '/^[@*#]/d' -e 's/.*: //' -e 's/,//g' | awk '{ for(i=1;i<=NF;i++) if(i<10) printf \"map %d :let r=SpellReplace(\\\"%s\\\")<CR> | echo \\\"%d: %s\\\" | \",i,$i,i,$i; }'")
:  if alter !=? ""
:    echo "Checking ".expand("<cword>").": Type 0 for no change, r to replace or"
:    exe alter
:    map 0 <cr>:let r=SpellRemoveMappings()<cr>
:    map r 0gewcw
:  else
:    echo "no alternatives"
:  endif
:endfunction

:function! SpellRemoveMappings()
:  let counter=0
:  while counter<10
:    exe "map ".counter." x"
:    exe "unmap ".counter
:    let counter=counter+1
:  endwhile
:  unmap r
:endfunction


:function! SpellReplace(s)
:  exe "normal gewcw".a:s."\<esc>"
:  let r=SpellRemoveMappings()
:endfunction

:function! ExitSpell()
:  syntax on
:  unmap <esc>i
:  unmap <esc>u
:  unmap <esc>a
:  unmap <esc>n
:  unmap <esc>p
:  unmap <m-i>
:  unmap <m-u>
:  unmap <m-a>
:  unmap <m-n>
:  unmap <m-p>
:  syn match SpellErrors "xxxxx"
:  syn match SpellCorrected "xxxxx"
:  syn clear SpellErrors
:  syn clear SpellCorrected
:endfunction

:function! SpellCheck() 
:  syntax off
:  set wrap
:  syn case match
:  let @_=CheckSpellLanguage()
:  w
:  syn match SpellErrors "xxxxx"
:  syn clear SpellErrors
:  let b:spellerrors="\\<\\(nonexisitingwordinthisdociumnt"
:  let b:mappings=system("ispell -l -d ".b:language." < ".expand("%")." | sort -u | sed 's/\\(.*\\)/syntax match SpellErrors \"\\\\<\\1\\\\>\" ".b:spell_options."| let b:spellerrors=b:spellerrors.\"\\\\\\\\\\\\\\\\|\\1\"/'")
:  exe b:mappings
:  let b:spellerrors=b:spellerrors."\\)\\>"
:  map <ESC>i :let @_=system("echo \\\*".expand("<cword>")." \| ispell -a -d ".b:language)<CR>:syn case match<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><cr><c-l>
:  map <ESC>u :let @_=system("echo \\\&".expand("<cword>")." \| ispell -a -d ".b:language)<CR>:syn case ignore<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><cr><c-l>
:  map <ESC>a :syn case match<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><c-l>
:  exe "map <esc>n /".b:spellerrors."\<cr>"
:  exe "map <esc>p ?".b:spellerrors."\<cr>"
:  map <m-i> :let @_=system("echo \\\*".expand("<cword>")." \| ispell -a -d ".b:language)<CR>:syn case match<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><cr><c-l>
:  map <m-u> :let @_=system("echo \\\&".expand("<cword>")." \| ispell -a -d ".b:language)<CR>:syn case ignore<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><cr><c-l>
:  map <m-a> :syn case match<cr>:exe "syn match SpellCorrected \"\\<".expand("<cword>")."\\>\" transparent contains=NONE ".b:spell_options<cr><c-l>
:  exe "map <m-n> /".b:spellerrors."\<cr>"
:  exe "map <m-p> ?".b:spellerrors."\<cr>"
:  syn cluster Spell contains=SpellErrors,SpellCorrected
:  hi link SpellErrors Error
:  exe "normal \<cr>"
:endfunction

:function! CheckSpellLanguage() 
:  if !exists("b:spell_options") 
:    let b:spell_options=""
:  endif
:endfunction

:function! SpellLanguage()
:  if !exists("b:language") || b:language ==? ""
:    let b:language="american"
:    let @_=SpellCheck()
:  elseif b:language ==? "american"
:    let b:language="russianw"
:    let @_=SpellCheck()
:  else
:    let b:language=""
:    let @_=ExitSpell()
:  endif
"  echo "Language: ".b:language
:endfunction

map <F6> :let @_=SpellLanguage()<cr>
map <ESC>/ :let @_=ProposeAlternatives()<CR>
map <m-/> :let @_=ProposeAlternatives()<CR>

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Comm] .vimispell.vim
  2003-01-09 17:23 [Comm] .vimispell.vim Alexey Tourbin
@ 2003-01-11 20:19 ` Pavel Shurubura
  2003-01-13 17:28   ` [Comm] .vimispell.vim Alexey Tourbin
  0 siblings, 1 reply; 3+ messages in thread
From: Pavel Shurubura @ 2003-01-11 20:19 UTC (permalink / raw)
  To: community

On Thu, 9 Jan 2003, Alexey Tourbin wrote:

>
> Может кому надо... или может у кого лучше есть?
>

  А в строчке

 :    let b:language="russianw"

  действительно должно быть russianw ???

-- 
With kindest regards, Pavel.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Comm] Re: .vimispell.vim
  2003-01-11 20:19 ` Pavel Shurubura
@ 2003-01-13 17:28   ` Alexey Tourbin
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Tourbin @ 2003-01-13 17:28 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 413 bytes --]

On Sat, Jan 11, 2003 at 11:19:44PM +0300, Pavel Shurubura wrote:
> On Thu, 9 Jan 2003, Alexey Tourbin wrote:
> 
> >
> > Может кому надо... или может у кого лучше есть?
> >
> 
>   А в строчке
> 
>  :    let b:language="russianw"
> 
>   действительно должно быть russianw ???

Это для локали cp1251 (пакет ispell-ru-lebedev-cp1251).
Для koi8-r -- %s/russianw/russian/g.

-- 
WBR, Alexey Tourbin
BIOZAK Ltd., Russia

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-01-13 17:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-09 17:23 [Comm] .vimispell.vim Alexey Tourbin
2003-01-11 20:19 ` Pavel Shurubura
2003-01-13 17:28   ` [Comm] .vimispell.vim Alexey Tourbin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git