parent
8dbdf94bf0
commit
0de4b250a3
|
@ -229,6 +229,8 @@ class Buffer(object):
|
|||
pass
|
||||
def changed(self):
|
||||
return self.modified
|
||||
def changed_on_disk(self):
|
||||
return False
|
||||
def reload(self):
|
||||
raise Exception, "%s reload: Unimplemented" % (self.name())
|
||||
def save_as(self, path, force=False):
|
||||
|
|
|
@ -11,8 +11,7 @@ use Getopt::Long qw();
|
|||
use Scalar::Util qw();
|
||||
|
||||
# NOTE: some Term::ReadLine implementations don't support features that we sort
|
||||
# of need. Term::ReadLine::Gnu is recommended.
|
||||
#use Term::ReadLine qw();
|
||||
# of need. Term::ReadLine::Gnu is strongly recommended.
|
||||
|
||||
# globals
|
||||
Getopt::Long::Configure('bundling');
|
||||
|
|
Loading…
Reference in New Issue