|
I have a Winforms dialog that contains among other controls a TextBox that allows a single line of input. I would like to allow the user to be able to press Ctrl-Backspace to delete an entire word. This is not the default behaviour with the out-of-the...
Started by Rhys Jones on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
PrevSpacePos - 1); textBox1.SelectedText = ""; } }
I would simulate Ctrl+Backspace by sending Ctrl+Shift' or 'whatever' that makes enable RichTextBox (CTRL + Backspace)able for TextBox, the problem can be solved)....
|
|
I'm working in an ASP.NET MVC Beta 1 project, and I've noticed that if I want to rename a file in the Solution Explorer pane, Ctrl+Backspace does not do what it should (delete the closest "word"), and I get a silly box character and annoyed.
I'm doing...
Started by tags2k on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Press.
For "File.Rename"
Put your cursor in the "Press shortcut keys" textbox and press Ctrl+Backspace.
|
|
Hello!
Is there the way to apply "greedy" behavior to and keys in Visual Studio? By "greedy" I mean such behavior when all whitespace between cursor position and next word bound can be deleted using one keystroke.
Started by Artem Tikhomirov on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You may need+Backspace....
Ctrl+Back Space and Ctrl+Delete are also greedyYou can use Ctrl+Shift+Arrow keys to make the selection and then just hit Delete.
But it beats pressing backspace again and again....
|
Ask your Facebook Friends
|
Hi All,
I have been using Pages to edit a document a lot as I find it better to work on the lounge with the Ipad than sit in the chair at the notebook (which is what I do all day for work).
One thing I want is to use a Delete Key (like on a PC) and not...
Started by stuartmeyers on
, 11 posts
by 8 people.
Answer Snippets (Read the full thread at macrumors):
I spend life would be a....
Like they couldn't do shift-backspace or space-backspace as a delete actionI would do just about ANYTHING to get a fwd delete or at least a couple of arrow keys.
This is not impressive programming.
|
|
Say I have a directory with one file in it mylongfilename.blahdeblah.txt now the keystrokes mv [tab] [tab] will result in mv mylongfilename.blahdeblah.txt mylongfilename.blahdeblah.txt on my command line
What I'd now like to do is type something in the...
Started by nevster on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
There's probably an emacs:
meta-backspace....
Set -o vi to get into vi mode.
'.' to it's current value, then Ctrl-w would delete back to the '.' instead of back to the preceeding space dw for delete word, or cw for change word.
|
|
I was typing a document in IE (ironically an IT support ticket) and hit backspace to erase a typo.
So naturally it jumps back to a previous page. I go forward and everything I was working on is wiped.
How can I set backspace to backspace in IE8?
Thanks...
Started by Rerednaw on
, 13 posts
by 11 people.
Answer Snippets (Read the full thread at anandtech):
Backspace works fine....
I sense the problem in IE8.
Backspace works fine in any IE8 text box.
I just randomly tap both Ctrl, Shift and Alt keys furiously for a couple of seconds and then backspaceCan't replicate your problem in IE8.
|
|
When i press ctrl+backspace i some times get a small square inserted instead of the entire word erased. I tried to copy it here but it doesn't look this way in the textbox, it's just a plain white rectangle with a 1px black border.
It only happens in...
Started by ugh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
The box is displayed because, as you've discovered, not all programs handle the ctrl+backspace key to delete the....
Days of the Internet Explorer group used the Brief editor, which uses Ctrl+Backspace as the shortcut .
|
|
In some editors there exist plugins implementing a feature called "hungry backspace" or "hungry delete".
If this mode is active in a text editor then one hit to the backspace key will automatically delete all whitespace chars backwards from the current...
Started by mkoeller on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Adam
CTRL-backspace is pretty close too: delete previous word :
function(); (4 spaces)
+ CTRL-BACKSPACE gives:
function
Other than that, AnyEdit plugin can convert trailing spaces into tabs (but also into "", effectively....
|
|
I have a log file with backspace characters in it (^H). I'm looking through the file in Vim and it can be quite hard to see what's going on.
Ideally I'd like to be able to "apply" all the ^H on a given line/range so that I can see the final result.
I'...
Started by Draemon on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The key ....
This also works if you delete multiple lines, or even the whole file.
Turn on the 'paste' option (using :set paste ), and then press dd i <CTRL-R> 1 <ESC> on each line that you want to apply the backspaces to.
|
|
I am trying to write a bash script using 'case' but I cannot figure out what the escape sequence would be for the arrow keys. Also, getting the escape sequence for the delete and backspace keys would be useful too. I know that \d is supposed to be delete...
Started by sadarax on
, 12 posts
by 5 people.
Answer Snippets (Read the full thread at linuxquestions):
0126 0;ctrl-delete 0027 0091 0051 0059 0054 0126 0;ctrl-shift-delete 0027 0091 0051 0059 0055 0126 0;ctrl-alt-delete 0027 0091 0051 0059 0056 0126 0;ctrl-alt-shift-delete 0027 0091 0051 0126 0;....
|