diff --git a/common/content/commandline.js b/common/content/commandline.js index c6dc3dba..979af1c6 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -2122,7 +2122,7 @@ var ItemList = Class("ItemList", { }, /** - * Selects the item at the given *group* and *index*.o + * Selects the item at the given *group* and *index*. * * @param {CompletionContext|[CompletionContext,number]} *group* The * completion context to select, or a tuple specifying the @@ -2131,9 +2131,8 @@ var ItemList = Class("ItemList", { * @param {number} position If non-null, try to position the * selected item at the *position*th row from the top of * the screen. Note that at least {@link #CONTEXT_LINES} - * lines will be visible above an below the selected item - * unless there are insufficient results to make this - * possible. + * lines will be visible above and below the selected item + * unless there aren't enough results to make this possible. * @optional */ select: function select(group, index, position) { diff --git a/common/content/editor.js b/common/content/editor.js index c7122ecd..28c56dcc 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -1200,7 +1200,7 @@ var Editor = Module("editor", XPCOM(Ci.nsIEditActionListener, ModuleBase), { }); mappings.add([modes.VISUAL], - ["o"], "Focus the other end of the selection", + ["o"], "Move cursor to the other end of the selection", function () { if (editor.isTextEdit) var selection = editor.selection; diff --git a/pentadactyl/NEWS b/pentadactyl/NEWS index 104ff19d..7cb8046b 100644 --- a/pentadactyl/NEWS +++ b/pentadactyl/NEWS @@ -46,8 +46,8 @@ - Added t_gu, t_gU, and v_o mappings. [b8] - Added t_ and t_ mappings. [b8] - Added o_c, o_d, and o_y mappings. [b8] - - Added register and basic kill ring support, t_" and I_ - mappings, and :registers command. [b8] + - Added register and basic kill ring support, t_" and + I_/I_ mappings, and :registers command. [b8] - Added operator modes and proper first class motion maps. [b8] - Improved undo support for most mappings. [b8] • General completion improvements