parent
abafebd389
commit
3947460779
|
@ -131,7 +131,11 @@ class ToggleTabs(Method):
|
|||
class Pwd(Method):
|
||||
'''Print the buffer's current working directory'''
|
||||
def _execute(self, w, **vargs):
|
||||
home = os.getenv('HOME')
|
||||
if hasattr(w.buffer, 'path'):
|
||||
cwd = os.path.dirname(w.buffer.path) + '/'
|
||||
if cwd.startswith(os.getenv('HOME')):
|
||||
cwd = cwd.replace(os.getenv('HOME'), '~')
|
||||
if cwd.startswith(home):
|
||||
cwd = cwd.replace(home, '~')
|
||||
w.set_error("Directory %s" % cwd)
|
||||
else:
|
||||
w.set_error("Directory %s/" % os.getcwd())
|
||||
|
|
Loading…
Reference in New Issue