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:
Justin M. Keyes
2023-08-09 15:33:53 -07:00
committed by GitHub
parent e6947bb1e8
commit 1d81d7a268
5 changed files with 5 additions and 3 deletions

View File

@@ -956,7 +956,7 @@ vim.go.co = vim.go.columns
--- insert a space.
---
--- @type string
vim.o.comments = "s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-"
vim.o.comments = "s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-,fb:•"
vim.o.com = vim.o.comments
vim.bo.comments = vim.o.comments
vim.bo.com = vim.bo.comments