New Lines

The default configuration for TinyMCE seems to insert a two new lines whenever you hit enter and sometimes I only want one. You can make this change in the "tinymce.module" file, by replacing this:

$tinymce_invoke = <<<EOD
<script type="text/javascript">
tinyMCE.init({
$tinymce_settings
});
</script>
EOD;

 With this:

$tinymce_invoke = <<<EOD
<script type="text/javascript">
tinyMCE.init({
$tinymce_settings,
force_br_newlines : 'true',
force_p_newlines : 'false'
});
</script>
EOD;

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Nevermind, I figured out how

Nevermind, I figured out how to do single lines. You hold down the shift key while pressing enter to do a single line.