From 3e7ebb5d7b1e477df943cd01f469cf5d20f1509d Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sat, 22 Nov 2014 22:19:46 +0100 Subject: added variant of the ^U command with string building: the EU command it became apparent, that something like this is very useful, when constructing the contents of a q-register without editing it. I have decided against introducing another modifier for toggling string building. Most commands have string building enabled and it doesn't hurt. For the few exceptions, an alternative variant can be introduced. --- src/parser.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser.cpp') diff --git a/src/parser.cpp b/src/parser.cpp index 66b46c4..f9e6332 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1805,6 +1805,7 @@ StateECommand::StateECommand() : State() transitions['N'] = &States::glob; transitions['S'] = &States::scintilla_symbols; transitions['Q'] = &States::eqcommand; + transitions['U'] = &States::eucommand; transitions['W'] = &States::savefile; } -- cgit v1.2.3