mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 16:28:17 +00:00
feat(defaults): treat "•" as a list item prefix #24623
Problem: Nvim docs use "•" as a list item prefix but `gw{motion}` doesn't format such lists by default. Solution: Change the 'comments' option to include "fb:•" by default.
This commit is contained in:
@@ -1287,7 +1287,7 @@ return {
|
||||
abbreviation = 'com',
|
||||
alloced = true,
|
||||
cb = 'did_set_comments',
|
||||
defaults = { if_true = 's1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-' },
|
||||
defaults = { if_true = 's1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-,fb:•' },
|
||||
deny_duplicates = true,
|
||||
desc = [=[
|
||||
A comma-separated list of strings that can start a comment line. See
|
||||
|
Reference in New Issue
Block a user