Skip to content

Commit

Permalink
Enable experimental autocmd by default for science
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarWatcher committed Jun 18, 2022
1 parent 46d7591 commit 8d00c1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.0.3
`let g:AutoPairsVersion = 30062`

## Changed
* Enabled experimental autocmd by default; preparing for the eventual deprecation of it

# 3.0.2
`let g:AutoPairsVersion = 30061`

Expand Down
2 changes: 1 addition & 1 deletion autoload/autopairs.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ endif
" Current version; not representative of tags or real versions, but purely
" meant as a number associated with the version. Semantic meaning on the first
" digit will take place. See the documentation for more details.
let g:AutoPairsVersion = 30061
let g:AutoPairsVersion = 30062

let s:save_cpo = &cpoptions
set cpoptions&vim
Expand Down
2 changes: 1 addition & 1 deletion autoload/autopairs/Variables.vim
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fun! autopairs#Variables#_InitVariables()

call s:define('g:AutoPairsReturnOnEmptyOnly', 1)

call s:define('g:AutoPairsExperimentalAutocmd', 0)
call s:define('g:AutoPairsExperimentalAutocmd', 1)
call s:define('g:AutoPairsStringHandlingMode', 0)
call s:define('g:AutoPairsSingleQuotePrefixGroup', '^|\W')

Expand Down

0 comments on commit 8d00c1b

Please sign in to comment.