pogyomo / submode.nvim

Create your own submode
MIT License
41 stars 0 forks source link

use `.` instead of `:` when call methods #5

Closed pogyomo closed 8 months ago

pogyomo commented 8 months ago

Most plugin call its methods with . and lazy.nvim calls plugin's setup method with .. So it's good to replace : with ..

Example:

require("submode").setup({})
require("submode").enter("ExampleSubmode")