diff options
| author | Phil Crosby | 2010-03-07 17:29:18 -0800 | 
|---|---|---|
| committer | Phil Crosby | 2010-03-07 22:50:32 -0800 | 
| commit | fea74e5cef3ccbfb2c3c581b289f02cd8d8a0a05 (patch) | |
| tree | b8f6ad611aa692858f495428520464b5de79628d /commands.js | |
| parent | 70b8c396c273172ad2bc5b5cead0db7ad071767c (diff) | |
| download | vimium-fea74e5cef3ccbfb2c3c581b289f02cd8d8a0a05.tar.bz2 | |
Remove periods from the command descriptions, to save some space in the help dialog
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 66 | 
1 files changed, 33 insertions, 33 deletions
| diff --git a/commands.js b/commands.js index 7cab1a56..6fcad6b9 100644 --- a/commands.js +++ b/commands.js @@ -52,43 +52,43 @@ function parseCustomKeyMappings(customKeyMappings) {  }  // Navigating the current page: -addCommand('showHelp',            'Show help.',  true); -addCommand('scrollDown',          'Scroll down.'); -addCommand('scrollUp',            'Scroll up.'); -addCommand('scrollLeft',          'Scroll left.'); -addCommand('scrollRight',         'Scroll right.'); -addCommand('scrollToTop',         'Scroll to the top of the page.'); -addCommand('scrollToBottom',      'Scroll to the bottom of the page.'); -addCommand('scrollPageDown',      'Scroll a page up.'); -addCommand('scrollPageUp',        'Scroll a page down.'); -addCommand('scrollFullPageDown',  'Scroll a full page down.'); -addCommand('scrollFullPageUp',    'Scroll a full page up.'); - -addCommand('reload',              'Reload the page.'); -addCommand('toggleViewSource',    'View page source.'); -addCommand('zoomIn',              'Zoom in.'); -addCommand('zoomOut',             'Zoom out.'); -addCommand('copyCurrentUrl',      'Copy the current URL to the clipboard.'); - -addCommand('enterInsertMode',     'Enter insert mode.'); - -addCommand('activateLinkHintsMode',               'Enter link hints mode to open links in current tab.'); -addCommand('activateLinkHintsModeToOpenInNewTab', 'Enter link hints mode to open links in new tab.'); - -addCommand('enterFindMode',        'Enter find mode.'); -addCommand('performFind',          'Cycle forward to the next find match.'); -addCommand('performBackwardsFind', 'Cycle backward to the previous find match.'); +addCommand('showHelp',            'Show help',  true); +addCommand('scrollDown',          'Scroll down'); +addCommand('scrollUp',            'Scroll up'); +addCommand('scrollLeft',          'Scroll left'); +addCommand('scrollRight',         'Scroll right'); +addCommand('scrollToTop',         'Scroll to the top of the page'); +addCommand('scrollToBottom',      'Scroll to the bottom of the page'); +addCommand('scrollPageDown',      'Scroll a page up'); +addCommand('scrollPageUp',        'Scroll a page down'); +addCommand('scrollFullPageDown',  'Scroll a full page down'); +addCommand('scrollFullPageUp',    'Scroll a full page up'); + +addCommand('reload',              'Reload the page'); +addCommand('toggleViewSource',    'View page source'); +addCommand('zoomIn',              'Zoom in'); +addCommand('zoomOut',             'Zoom out'); +addCommand('copyCurrentUrl',      'Copy the current URL to the clipboard'); + +addCommand('enterInsertMode',     'Enter insert mode'); + +addCommand('activateLinkHintsMode',               'Enter link hints mode to open links in current tab'); +addCommand('activateLinkHintsModeToOpenInNewTab', 'Enter link hints mode to open links in new tab'); + +addCommand('enterFindMode',        'Enter find mode'); +addCommand('performFind',          'Cycle forward to the next find match'); +addCommand('performBackwardsFind', 'Cycle backward to the previous find match');  // Navigating your history: -addCommand('goBack',              'Go back in history.'); -addCommand('goForward',           'Go forward in history.'); +addCommand('goBack',              'Go back in history'); +addCommand('goForward',           'Go forward in history');  // Manipulating tabs: -addCommand('nextTab',             'Go one tab right.',  true); -addCommand('previousTab',         'Go one tab left.',   true); -addCommand('createTab',           'Create new tab.',    true); -addCommand('removeTab',           'Close current tab.', true); -addCommand('restoreTab',          "Restore closed tab.", true); +addCommand('nextTab',             'Go one tab right',  true); +addCommand('previousTab',         'Go one tab left',   true); +addCommand('createTab',           'Create new tab',    true); +addCommand('removeTab',           'Close current tab', true); +addCommand('restoreTab',          "Restore closed tab", true);  // An ordered listing of all available commands, grouped by type. This is the order they will | 
