Word Wrapping -- Possible to highlight just one horizontal line of many? - sublimetext2

I like automatically highlighting the line of code that I'm working on, but the current setting highlights the entire wrapped line -- sometimes extending several horizontal lines on the page.
// If enabled, will highlight any line with a caret
"highlight_line": true,
Is there any way to just highlight one horizontal line of text, even though the wrapped line might consist of several horizontal lines of code?

This is not possible with Sublime Text 2. The nightly build of Emacs / Aquamacs, however, does offer this feature.

Related

PhpStorm first line doesn't follow "Align consecutive assignments" setting

I have a little question while you having a break from coding.
I have set the "Align consecutive assignments" in PhpStorm.
For some reason sometimes the first line of a variable definition block is a little bit unaligned. Screenshot attached.
Basically my question is: Why is the = sign of the first line not aligned with all the following lines which are properly aligned after reformat.

R shiny: text won't wrap within splitLayout()

I am working within a tabPanel for a webtool I am creating and need two columns. My predecessor used fluidPage() from within the tabPanel, but that causes the text and figures I want to add to spill outside of the panel.
The easiest solution I have found is to use splitLayout(), which works great for my figures, however, any lines of text I add within a splitLayout will not wrap, and instead creates a slider bar:
splitLayout(
h5(strong("Projected HCV Prevalence with DAAs")),
h5(strong("Projected HCV Prevalence without Treatment")),
cellArgs = list(style='padding:0px; word-wrap: break-word;', align="center")
),
Even removing the html code doesn't fix it. Any solutions?

Indent subsequent lines without hanging indent

In Sublime, long lines are wrapped using hanging indent (also known as "reverse indent"). Example:
(I use "word_wrap": "true" in my settings).
Is there way to make long lines wrap without this hanging indentation, i.e. like in Brackets:
From my observations, ST always adds one indentation level to lines that were wrapped, if the base scope begins with source. (If indent_subsequent_lines is set to true, ST will indent subsequent word wrapped lines to the level of the line being wrapped and then add the extra level of indentation.)
It seems there is no way to disable hanging indentation in ST for source code. Indeed, this behavior can cause text to be unviewable if it is indented further than the window width - https://github.com/SublimeTextIssues/Core/issues/286.
It might be worth logging an issue at https://github.com/SublimeTextIssues/Core/issues to ask the ST devs to consider making an option to disable the hanging indentation.

HTML textarea cuts off beginning new lines

An HTML text area works fine with new lines ("\n") when they're after any other content in the text area, whether it be whitespace characters like spaces or tabs ("\t") or not.
However, when text area content begins with a new line (for example, "\ntest"), that new line gets cut off on display.
Any ideas on what causes this/how to remedy it?
This seems to be by the spec.
A single newline may be placed immediately after the start tag of pre and textarea elements. If the element's contents are intended to start with a newline, two consecutive newlines thus need to be included by the author.
Note that in the past there were some bugs in the various browsers regarding leading new lines in elements:
https://bugzilla.mozilla.org/show_bug.cgi?id=591988
https://bugs.chromium.org/p/chromium/issues/detail?id=62901

Close tags dropping below highlighted line

I have minimal experience with HTML script so this may all go horribly wrong here.
Alright so I have a very simple yet very time consuming task of taking complete papers and converting them into HTML script. I'm using Sublime Text 3 with Emmet plugin.
Basically,
This is the first header
This is the first paragraph that needs to be tagged
This is the second header
This is the second paragraph that needs to be tagged
So super simple I need to put header tags on the headers and paragraph tags on the paragraphs.
What I have been doing is holding Ctrl and manually highlighting the desired text as it is all rather random. Problem is that takes forever to manually highlight the text like that.
I am aware of other ways to highlight such as Ctrl + L for the line. Problem is my close tags end up under the highlighted line.
Example:
<h2>This is the first header
</h2><p>This is the first paragraph that needs to be tagged
</p>
It's not a big deal but it makes the code harder to go through later and really chaotic.
The same problem persists if I click the corresponding number of the line.
Seeing as I have hundreds of pages to enter and even more headers, paragraphs, and pictures to properly tag; I'm looking for a solution to the tag dropping below the line or a faster method to entering text.
So, is there a fast method for entering text from a word document to Sublime text and quickly get the corresponding tags? e.g. <h2>,<h3>,<p>,<ul>,<li> and so on.
Any help will save my sanity, thanks.
When you select a line with CtrlL, it automatically selects the entire line, and moves the cursor down to the first position on the following line. There are two ways around this. The first is to place the cursor in the first position on the line you want to select, then just hit ShiftEnd and the line will be selected, with the cursor now sitting in the last position on that same line. Alternatively, use CtrlL, then hit Shift← (left arrow) to move the cursor from the first position on the next line to the last position on the selected line. Either way, you can now hit the key combo in Emmet for inserting a tag pair, and you're all set.