Saturday, January 4, 2014

Compiling/Executing a program with One Key Press in Vim/Gvim

Compiling/Executing a program with One Key Press in Vim/Gvim

Eventhough there are more than one way to compile/execute programs in Vim/Gvim, the normal method to compile and execute C,C++,Java,Python programs are: C:  !gcc % -o %:r  !./%:r C++: !g++ % -o %:r !./%:r Python: !python...

Sunday, December 29, 2013

Improving the Syntax Highlighting in VIM/Gvim

Improving the Syntax Highlighting in VIM/Gvim

GVim The default syntax highlighting VIM Editor is not that much upto the expectation of the programmers. It's also one of my favourite text editor. So, i've modified the original source code of the syntax highlighting files...

Installing GIT on Linux

Installing GIT on Linux

Git is a distributed revision control and source code management (SCM) system with an emphasis on speed. Git was initially designed and developed by Linus Torvalds for Linux kernel development...