Skip to content

Commit 9e519de

Browse files
committed
Change 'complete' option from 'slf' to 'sl' meaning no more local file completions by default anymore
1 parent e6ca25d commit 9e519de

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

common/content/commandline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ const CommandLine = Module("commandline", {
15601560

15611561
options.add(["complete", "cpt"],
15621562
"Items which are completed at the :open prompts",
1563-
"charlist", typeof(config.defaults["complete"]) == "string" ? config.defaults["complete"] : "slf",
1563+
"charlist", typeof(config.defaults["complete"]) == "string" ? config.defaults["complete"] : "sl",
15641564
{
15651565
completer: function (context) array(values(completion.urlCompleters))
15661566
});

common/locale/en-US/options.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@
326326
<tags>'cpt' 'complete'</tags>
327327
<spec>'complete' 'cpt'</spec>
328328
<type>charlist</type>
329-
<default>slf</default>
329+
<default>sl</default>
330330
<description>
331331
<p>Items which are completed at the <ex>:open</ex> prompts. Available items:</p>
332332

common/locale/ja/options.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
<tags>'cpt' 'complete'</tags>
299299
<spec>'complete' 'cpt'</spec>
300300
<type>charlist</type>
301-
<default>slf</default>
301+
<default>sl</default>
302302
<description>
303303
<p><ex>:open</ex> プロンプトで補完される項目です。以下の値が使用できます。:</p>
304304

vimperator/NEWS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
201x-xx-xx
1+
2015-xx-xx
22
* Version 3.8.4
3+
* Finally remove local file completions from the :open prompt which causes lots of problems (and
4+
slowdowns) for many people. If you want them back, use :set complete=slf
5+
to get back the old default value.
36
* Make <Ctrl-[> key always behave like <Esc> key (was missing from the command line handler)
47
* Add support for :set hintmatching=fuzzy as a new, alternative way for hintmatching.
58
* Don't display help message in command line for a normal click.

vimperator/content/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Config = Module("config", ConfigBase, {
3636
["VimperatorLeave", "Triggered before exiting Firefox"]],
3737

3838
defaults: {
39-
complete: "slf",
39+
complete: "sl",
4040
titlestring: "Vimperator"
4141
},
4242

0 commit comments

Comments
 (0)