CyberMango

Results 20 issues of CyberMango

Its a tool for fuzzy finding which uses neovim core instead of external tools.

Add easy configs for using multiple clipboards, not just the basic vim and system ones.

Integrate running python inside of vim: - run an interpreter split window (preferabely ipython) (easy). - Run whole project and see output while still in vim. utilize :make and set...

Find a good way to integrate cpp compilation. might use the :make command. Even if it uses an external cmake/make command, it should link from the error messages into the...

Decide what bracket auto closing plugin do you use. From what i have seen, those options seem to be the best: - autopairs: Works, mature, configurable. currently installed. - cons:...

Choose a form of tag files - catgs/cscope/gnu tags/global tags/universal ctags and integrate it into your vim setup. Tags are useful for nearly all languages, and can be used for...

Integrate debugging into vim, like in an IDE. Mainly for cpp and python. temporary solution: :Termdebug command. uses gdb inside of vim, but only supports the basics, and its nearly...

Add features for managing projects in vim: - Open a project workspace, with project dir being cwd. - Create new projects with a certain template and pre-made files, like .ccls...

Add git integration inside of nvim: - Files tree marks changed files. - Easy files diff view. - Easy file adding/staging. - Nice commits tree view. - Thin wrappers for...

Is there a way to open the file in a browser with its unsaved changes? It could be useful for viewing small changes before saving them.