mirror of
https://github.com/preservim/vim-litecorrect.git
synced 2025-11-08 09:53:49 -05:00
20 lines
628 B
VimL
20 lines
628 B
VimL
" =============================================================================
|
|
" File: plugin/litecorrect.vim
|
|
" Description: lightweight autocorrection for Vim
|
|
" Maintainer: perservim <https://github.com/preservim>
|
|
" Created: January 20, 2014
|
|
" License: The MIT License (MIT)
|
|
" =============================================================================
|
|
|
|
if exists('g:loaded_litecorrect') || &cp | finish | endif
|
|
let g:loaded_litecorrect = 1
|
|
|
|
" Save 'cpoptions' and set Vim default to enable line continuations.
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
" vim:ts=2:sw=2:sts=2
|
|
|