Editors

enki editor – amazing for md and rst files

2016/09/12

First, you need to install enki. YOu can do so with sudo yum install enki And then you can use the editor as usual. The first thing that you will notice is the navigator window. And here is screenshot …

vim mappings – easy way to do things.

2014/01/22

You can use vim mappings to make some of your editor tasks very simple. Here I am giving you just a example, but you could always let your imagination run wild. :nmap ,b Oj0c$**hP And what do we do …

bash – using the vi mode more effectively.

2013/11/22

You can first set the bash mode to vi. This will enable some vim like features to bash. So, add this to .bashrc : set -o vi Once, you have done that then its time to get more out of the vi mode. …

vim maps – simple commands to do stuff.

2013/08/28

Some time back, I was working on some script for logging and I wanted to change the class to function like this: $logger->Debug("Test string"); loggerFunc("Debug", "Test String"); As you can see, …

Vim – Why and where am I getting these errors from?

2013/05/15

If you have got this question in your mind, then you are in right place. vim -V20 2>&1 |tee You can give the debugfile as any file, where you would want to log the debug messages. This will log a …

vim mappings for multiple files.

2012/08/06

If you open multiple files in vim with command line option. Then the only way to move between the files is “:n” and “:N”. There is a easier way to do this. Just add mappings for this in vimrc. Here is …

g flag in :s useless in vim

2011/11/05

Some time back there was a post on vim_use list about the “/g” flag for the search and replace functionality of the vim. And the response of “Tim Chase” on the same was very elaborate and interesting. …

Cont: Get yourself some more conkyrc files.

2011/10/12

Last time we got ourselves some conkyrc files from the ubuntu forums. But that scripts gets the files only from the First page of the thread. Lets extend this further and get the script to get all the …

Script to get yourself some conkyrc files

2011/10/08

Continuing from where we left, here is a script that can do all this for you 🙂 curl http://ubuntuforums.org/showthread.php?t=281865\&page=$i | sed -n '/\\/pr/ p'| sed '// d'| sed …

debug call function() to debug a function in vim

2011/09/04

Image via Wikipedia […] Have you ever wished that you could either see what is going on initially at the vim startup like you could do with C program in the gdm mode, but really did not want …

GPG error on N900 when doing update on command line

2011/06/22

Image via Wikipedia […] If you have added some extra repositories to your Nokia N900 and are trying to do something ( like update, install or any other apt-get operation) you might see some …

vim autocomplete – automagically without tab.

2011/04/16

Lets first do the setup in one line. Get my vim script downloader. Use the script to add the script with script ID : :1879 (vim-autocomplpop) to your list of plugins for vim and you are done. If you …


This website uses cookies to ensure you get the best experience on our website. Learn more Got it