Files
dotFiles/home/.local/bin/myvim
T
Harish.K 941df54755 Commit from Office
Vim:
	open current snippet file;
	some java things for android development

Bins:
	update commands provided by npm packages in home dir (By making symlinks to ~/.local/bin)
	my[editor] open file with format fname:123:*

configs:
	spacefm config.
	openbox config.
2013-12-05 11:23:41 +05:30

7 lines
147 B
Bash
Executable File

#!/bin/bash
fname=$( echo $1 | sed 's/\(.*\):\(.*\):.*/\1/g' );
lineNo=$( echo $1 | sed 's/\(.*\):\(.*\):.*/\2/g' );
exec gvim $fname +$lineNo &