├── .gitignore ├── LICENSE ├── README.md ├── docs └── readme │ └── compare1.png ├── lua └── stcursorword │ └── init.lua └── stylua.toml /.gitignore: -------------------------------------------------------------------------------- 1 | test.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontungexpt/stcursorword/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontungexpt/stcursorword/HEAD/README.md -------------------------------------------------------------------------------- /docs/readme/compare1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontungexpt/stcursorword/HEAD/docs/readme/compare1.png -------------------------------------------------------------------------------- /lua/stcursorword/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontungexpt/stcursorword/HEAD/lua/stcursorword/init.lua -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontungexpt/stcursorword/HEAD/stylua.toml --------------------------------------------------------------------------------