├── .gitignore ├── LICENSE.md ├── README.md ├── autoload └── notoire.vim ├── doc ├── hotkeys.png ├── notoire.txt └── visual_example.png ├── ftdetect └── notoire.vim ├── plugin └── notoire.vim └── syntax └── note.vim /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/README.md -------------------------------------------------------------------------------- /autoload/notoire.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/autoload/notoire.vim -------------------------------------------------------------------------------- /doc/hotkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/doc/hotkeys.png -------------------------------------------------------------------------------- /doc/notoire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/doc/notoire.txt -------------------------------------------------------------------------------- /doc/visual_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/doc/visual_example.png -------------------------------------------------------------------------------- /ftdetect/notoire.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/ftdetect/notoire.vim -------------------------------------------------------------------------------- /plugin/notoire.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/plugin/notoire.vim -------------------------------------------------------------------------------- /syntax/note.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinBockelandt/notoire/HEAD/syntax/note.vim --------------------------------------------------------------------------------