Brackets editor: make Find & Replace search fields bigger - adobe-brackets

I'm trying out Brackets code editor. If I do a Find and Replace for numerous lines of code, the Find field displays all the lines as one long line. This makes it hard to see what is going on. Is there a way to make the Find and Replace bigger, so that it displays all the lines of code I am looking for, rather than 'condense' them into one line?

Related

R: Is there a way to set the terminal interpreter to allow line wrapping instead of cutting off with a dollar sign ($)?

When using the R interpreter from the terminal/command line, a line of code longer than 75 characters gets cut off from view with a preceding $ sign, as shown here. Both pictures are different views of the same line of code.
(I know the whole command is there and I can use the arrow keys/home/end to go through it.)
This makes the interpreter harder to use when pressing "up" to rerun previous lines of code with one or two small changes, since I have to scroll through the line to find the right spot. It'd be easier if I could just see the whole line. It's also a bit silly since my usable screen area is much wider than 75 characters. Is there a setting I can modify so that the lines will wrap, or at least allow them to be longer before getting cut off?

Indentation of bullet points in R pagedown resume

I want to create a resume using the {pagedown} resume template. Overall, it's a great fit, but when I use bullet points, I would like to align the second line of text to the first one.
Here is the current state:
I would like to align the w in the second line to the E in the first one.
I guess, this needs to be set somewhere in the resume.css, but I have not found anything related (but I don't really know CSS, so that means nothing).
Any ideas how to accomplish that?

how to remove constant line from point line series?

I'm using constant lines to show a particular event for the graph and now I want to remove that particular event. I'm using constantline.dispose method but It's not working properly. lines are not getting removed after calling dispose function.
ConstantLine.dispose() should do the trick, and seems to work in the official interactive examples gallery (LCJS v.3.4.0).
If it is not working for you, please add some example code or pictures & description of desired and actual behaviours.

How to create a dyraph with multiple x-axis labels?

I'm working with a lot of rank data that would benefit from a way to simultaneously display its respective year on the x-axis. For example, I want to create the following graph adapted from the dygraph gallery:
Note how the rank information (red arrow) for a particular weekend (green arrow) are both displayed on the x axis.
I know this might not be possible with dygraphs now, at least it wasn't available in these demos, so I guess my follow up question would be are there any plans to make this possible (how about in the [r] {dygraph} package)? Apparently a plotter called flot can do this.
UPDATE 1
If indeed this feature does not exist yet, then the following, although potentially obvious to Dygraph developers, is a thought for accomplishing the task easily (perhaps I'm wrong). At first I thought it would be necessary to provide input data of the form shown in Table A
However such input is a major deviation from the existing Dygraph parser model who expects one abscissa. Such suggests that a modification to the parser to accept a "Dual Label" option, requiring that both labels be contained in a single abscissa element as in Table B, would be easier. Thereafter, with the option specified, the parser would manage CSV as it usually would with the exception that it is now "bin cognizant" and detects division between labels 1 and 2 by use of an acceptable delimiter (in this case a single quotation mark - maybe not the best choice) and divisions between label 1 abscissa elements by name change. Behind the scenes each point gets its unique x coordinate and the "Dual Label" option causes the dygraph to visually scoot up a couple pixels to accommodate an extra label. Not sure how to handle full zoomed scrolling put simply leaving a label 1 element centered until an adjacent label 1 element comes on screen is an option.
Dygraphs rule!
There's no simple way to do this with dygraphs now. As you say, there's a fairly deep assumption that there's only a single x-axis.
Your best bet would be to either modify the existing legend plugin to do this, or to create a new plugin which renders just the "Weekend 1", "Weekend 2" line. While the plugins API isn't official yet, it is at least somewhat documented.
If you get this to work, please share your code!

In the less pager, is there a way to show more lines before a search result?

I often search within less, but it puts the search result to the very top of the screen, which makes reading man pages difficult, since I'm searching for a word, but I really want to see the flag connected to that description, which might be a few lines up.
Is there a way to show more lines at the top of the screen, so that the cursor is something like 5-10 lines below the top of the screen? Something like vim's scrolloff option.
Sounds like you want the -j option. For example, less -j5 would put a search result on line 5.
For man you'll need to set the PAGER environment variable to include the -j.
To show more lines of context before the search result, i.e. to place the search result a few lines down from the top of the screen instead of the top line, use:
less -jX
where X is the number of lines below the top of the screen where you want your results to end up.
If you usually prefer this style of search results, and want less to use it all the time (for example in man), put the option in the $LESS environment variable. For example, to always place the search result 5 lines down, using bash, that will be:
export LESS=-j5
You can of course add any other options to less in the $LESS environment variable too if you like.

Resources