|
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)....
|
|
In MonoDevelop (linux version), ctrl+backspace clears all the linebreaks till the last word/char block, and delete that.
For example:
qwe asd . . . _
(where _ is my cursor focus is on, and . are line breaks, pressing ctrl+backspace will return me this...
Started by nubela on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The work breaking logic is ....
See how on same page ...
Try to locate wrong code on you own and contribute patch .
Because MonoDevelop is freeware opensource project you can:
Report a bug (see this link for details) and wait for development team respose .
|
|
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
|
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 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.
|
|
Swapping backspace/capslock? I would have just asked Ripster about this, but apparently he isn't allowed/blocks all PM's.
I'm considering swapping the functionality of backspace and capslock with Autohotkey. Will the LED on my keyboard still light up ...
Started by GigaFlop on
, 15 posts
by 9 people.
Answer Snippets (Read the full thread at geekhack):
My PM the functionality of backspace....
Kinda like how I've onlyI use my caps key as a ctrl on Linux and it does not light up with a Unicomp spacesaver.
Primal even.
But something about Backspace (Delete on Macs) is just instinctual..
|
|
I've been aware of Steve Yegge's advice to swap Ctrl and Caps Lock for a while now, although I don't use Emacs. I've just tried swapping them over as an experiment and I'm finding it difficult to adjust. There are several shortcuts that are second nature...
Started by Sam Hasler on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
On a Kinesis Ergo Elan where my ctrl keys are under my thumbs, along with 2*alt, space, enter, backspace machines (coworkers, family members, etc.) causes me grief because Ctrl isn't where it 'ought to remember how each machine/keyboard....
|
|
Started by jayrmcm on
, 14 posts
by 9 people.
Answer Snippets (Read the full thread at reddit):
Using 10.7.3 and Safari 5.1.5, how about you?
Edit: I've also added... .
For mac os x? I haven't had any luck, and I'm definitely using CMD+SHIFT+DELETE.
LPT: Life Porn Tips.
I'm dumb.
You're correct.
Think you're defaulting to CTRL + ALT + DEL.
|
|
Is there any way to delete entries from the search box in the Mac version of Firefox? Not the suggestions, but the previous searches that come up automatically when I type into it. I am not trying to clear the whole history. I just want to delete individual...
Started by mikez302 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
On a MacBook....
There's a separate key labeled "Delete" to the rightShift-Delete is the key combination to do this, however it's not the "delete" key you'll find on a macbook keyboard.
The enter/return key) is labeled "Backspace".
|
|
Over the years I've had various keymap issues in UNIX screen through SSH, and I assume others have as well. My question has two parts:
When I SSH into my Ubuntu Dapper server (I know, I'm moving to Lenny post-haste:) from my OSX Macbook, the delete key...
Started by Eric Drechsel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Auto complete):
# Make fwd delete key do something useful "\e[3~": delete-char # Make ctrl-leftCheck in Terminal -> Settings -> Advanced and make sure that your delete key is sending; it's up to your stty settings to....
|