Skip to content

Commit b2d6308

Browse files
committed
fix!: disable empty buffer mappings by default
This was breaking multiple plugins - see #63
1 parent 2253f97 commit b2d6308

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

plugin/bullets.vim

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
scriptencoding utf-8
22
" Vim plugin for automated bulleted lists
3-
" Last Change: Sat Jan 29 06:56:14 PM CST 2022
43
" Maintainer: Dorian Karter
54
" License: MIT
6-
" FileTypes: markdown, text, gitcommit
75

86
" Preserve Vim compatibility settings ------------------- {{{
97
let s:save_cpo = &cpoptions
@@ -23,7 +21,7 @@ if !exists('g:bullets_enabled_file_types')
2321
endif
2422

2523
if !exists('g:bullets_enable_in_empty_buffers')
26-
let g:bullets_enable_in_empty_buffers = 1
24+
let g:bullets_enable_in_empty_buffers = 0
2725
end
2826

2927
if !exists('g:bullets_set_mappings')

0 commit comments

Comments
 (0)