Soft Line Breaks in Gnus (Emacs) - email

I am using Emacs more and more. I would like to use gnus for email, and I have it set up. The only problem I am having right now is that when I send an email, there are line breaks when the line wraps. Is there a way for the line wrap to be soft?

elethan pointed out that I needed to disable auto-fill-mode.
Solved it! Thanks!

Related

How do I force neovim help file to be english, not chinese?

This is weird, but my helplang comes set as 'helplang=cn' but I don't have it on my .vimrc file. Even if I add:
set helplang=us
at the very bottom of my .vimrc file, after I load vim, I get: helplang=cn
I am not sure where this is coming from... how can I figure this out?
I figured it out... the .vimrc I copied was using vimcdoc.vim plugin, which forces it to chinese!

VSCode Comments aren't inline

I use VSCode and I think its a great editor, but when I write a comment in html it drops to a new line under what I'm commenting which is really irritating.
If I comment a closing div I want it next to the closing div not under it.
I have uninstalled prettier but that made no difference.
Is what I want even possible in VSCode?
Any advise would be appreciated because I am so irritated that I am considering using a different editor (I'm on a Mac just in case it matters).
Thanks in advance.
This was a problem for me too, as were other new line / white space related HTML issues.
Assuming you are not using any formatters besides the native VSCode HTML language features (you said you uninstalled prettier, but you didn't mention whether you were using something else),
there is a setting HTML white space which you can set to preserve to leave your comments untouched.
Note that you may need to go into settings and check what is being used as the HTML default formatter

Where are my line numbers?

Running Emacs 24 (Mac OS). I enabled line-number-mode via M-x, but I'm still not seeing any line numbers? What's up? Do I need to edit my .emacs file too?
Thanks.
It sounds like you want linum-mode.

Cut and paste from eclipse into MS word appears as large blue blob

This has been bothering me for years. Every time I cut a block of code from a java file in eclipse and paste into a word document, the text just appears as a big block of text. Does anyone know of a way to fix this?
This mostly happens with single line copying. Try copying by including the white-space from the above/bottom line.
Try pasting your code into a basic text editor first, like notepad; it should get rid of any attributes that are coming from where you cut from.
EDIT
See http://office.microsoft.com/en-us/word-help/control-the-formatting-when-you-paste-text-HA010215708.aspx and look for the "Keep Text Only" option.
This is well known problem. It is registered as a Eclipse bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=86503
Unfortunately, for today, this problem is not solved.

Is there a way configure NetBeans to block indent with the Tab key?

I started using NetBeans for Python development, and so far it looks pretty good. One thing that bothers me is that when I highlight a few lines of text and hit the Tab key, it doesn't do what almost every other editor does, but rather just adds four spaces at the end of the block.
I know NetBeans has a block indent action (somewhat oddly called "Shift Right"), but it seems impossible to bind the Tab key to anything. For now I've settled on Ctrl+Shift+I for block indent as a tribute to my Delphi days, but really, I'd just like make it work like Eclipse/IntelliJ/Notepad2 and do a block indent on Tab.
Any tips?
EDIT: OK, so it seems that this behavior only occurs if I select a bunch of lines and the cursor is positioned on an empty line. This looks like a bug, so I'm going to file a report.
Thanks guys!
EDIT 2: In case anyone's interested, Issue 155735
This should be fixed now - in build #415 and later from http://deadlock.netbeans.org/hudson/job/python/ . Thanks for the bug report.
Tab should indent the selected lines, and Shift-Tab dedent. The behavior you're describing sounds like a bug. Can you open the keybindings dialog and see what your Tab key is bound to?
Another thing you could try is clearing your userdir in case there is old cruft in there.
If these things don't work, please file an issue so we can reproduce and track this down --
http://scripting.netbeans.org/issues/enter_bug.cgi?component=python&issue_type=DEFECT
-- Tor
Had you changed the default keys at some point? Tab works for block indent for me.