├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── im-select.m └── plugin ├── im-select └── smartim.vim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Use it for whatever you like :-) 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/README.md -------------------------------------------------------------------------------- /im-select.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/im-select.m -------------------------------------------------------------------------------- /plugin/im-select: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/plugin/im-select -------------------------------------------------------------------------------- /plugin/smartim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybian/smartim/HEAD/plugin/smartim.vim --------------------------------------------------------------------------------