cohama / lexima.vim

Auto close parentheses and repeat by dot dot dot...
995 stars 46 forks source link

Update vital.vim #86

Closed ujihisa closed 5 years ago

ujihisa commented 5 years ago
eda83ccae4654265ef118569dcae39fd30d3c0d5
    Modules: Data.String
    Ref: https://github.com/vim-jp/vital.vim/pull/575
    trim(), trim_start(), trim_end() were changed to remove [:space:] characters ([ \t\r\n\v\f]).
    Before, the functions removed only [:blank:] characters ([ \t]).
    If you want the previous behavior, replace code like:
    String.trim(str) -> matchstr(str, '^\s*\zs.{-}\ze\s*$')
c680503cd8e48f7b1c21903ed14ffe75cb56c3f4
    Modules: *
    The obsolete file "autoload/vital.vim" is no longer installed
    and "vital#of()" is no longer available.
    Please use "vital#{plugin}#new()" instead.
aabb291268c0977e1444b0901e816db4467d6806
    Modules: *
    'vital#{plugin-name}#of()' was renamed to 'vital#{plugin-name}#new()'.
ujihisa commented 5 years ago

The diff looks big, but the meaningful changes are just the following 2 parts

cohama commented 5 years ago

Thanks!