mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
added gitk
This commit is contained in:
parent
28aa492997
commit
113a58096d
@ -33,15 +33,17 @@ class Action:
|
||||
def _unknown(self):
|
||||
print "unknown action %s for %s" % (self.name,self.path)
|
||||
def terminal(self):
|
||||
print "terminal %s" % self.path
|
||||
if not os.fork():
|
||||
subprocess.Popen(['gnome-terminal',"--default-working-directory='%s'" % self.path]).wait()
|
||||
sys.exit()
|
||||
def nautilus(self):
|
||||
print "nautilus %s" % self.path
|
||||
if not os.fork():
|
||||
subprocess.Popen(['nautilus',self.path]).wait()
|
||||
sys.exit()
|
||||
def gitk(self):
|
||||
if not os.fork():
|
||||
subprocess.Popen(['gitk',self.path]).wait()
|
||||
sys.exit()
|
||||
|
||||
def __call__(self):
|
||||
getattr(self,self.name,self._unknown)()
|
||||
|
Loading…
Reference in New Issue
Block a user