Changing default status of complete_filesystem to off

This commit is contained in:
Jorgen Stenarson
2010-07-04 21:21:06 +02:00
parent 2c56c1f08a
commit f3d3b840b8
2 changed files with 2 additions and 1 deletions
@@ -76,6 +76,7 @@ bell_style("none") #modes: none, audible, visible(not implemented)
show_all_if_ambiguous("on")
mark_directories("on")
completer_delims(" \t\n\"\\'`@$><=;|&{(?")
complete_filesystem("off")
debug_output("off")
#allow_ctrl_c(True) #(Allows use of ctrl-c as copy key, still propagate keyboardinterrupt when not waiting for input)
+1 -1
View File
@@ -31,7 +31,7 @@ class BaseMode(object):
self.completer_delims = u" \t\n\"\\'`@$><=;|&{("
self.show_all_if_ambiguous = u'off'
self.mark_directories = u'on'
self.complete_filesystem = u'on'
self.complete_filesystem = u'off'
self.completer = None
self.begidx = 0
self.endidx = 0