diff options
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r-- | common/content/buffer.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 759fe0b4..da1ac020 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1840,11 +1840,11 @@ var Buffer = Module("buffer", { "Where to show the destination of the link under the cursor", "string", "status", { - values: [ - ["", "Don't show link destinations"], - ["status", "Show link destinations in the status line"], - ["command", "Show link destinations in the command line"] - ] + values: { + "": "Don't show link destinations", + "status": "Show link destinations in the status line", + "command": "Show link destinations in the command line" + } }); options.add(["usermode", "um"], |