My intro to LESS - If you're not using it, you should be.
11–20 of 44 posts
Re: My intro to LESS - If you're not using it, you should be.
#12 export LESS=-i -g -M -R -x4 -X -f -F -z-1
for a much happier pager.Re: My intro to LESS - If you're not using it, you should be.
#13Also, you should consider: export LESS=-i -g -M -R -x4 -X -f -F -z-1 for a much happier pager.
Re: My intro to LESS - If you're not using it, you should be.
#14Re: My intro to LESS - If you're not using it, you should be.
#15Re: My intro to LESS - If you're not using it, you should be.
#16The only downside is probably I never get to use my favorite CSSEdit again.
Re: My intro to LESS - If you're not using it, you should be.
#17Also, you should consider: export LESS=-i -g -M -R -x4 -X -f -F -z-1 for a much happier pager.
Mind explaining what this does?
-g = highlight the particular string that's been found by the last search command
-M = verbose prompt
-R = all control characters, 'R' for Raw
-x4 = tabs take 4 spaces
-X = don't reinit the screen when the pager exits
-f = force open any kind of file
-F = end the pager when the end of the file has been reached
-z-1 = use 1 less line for a screen's worth of content
Re: My intro to LESS - If you're not using it, you should be.
#18My toolchain is currently...
python/apache pure json apis server side
knockoutjs/jquery/less client side
This is very powerful, but the semantics of programming are pretty crazy. I have variables and "functions" in my css, data bindings in the HTML, and a massive ammount of js. The js is sometimes hard to structure.
I almost wish there was a single lightweight coffescript style language to replace the big three (HTML/CSS/JS). The "HTML is for documents" idea is already long gone in most of my code.
Re: My intro to LESS - If you're not using it, you should be.
#19Earlier quoted context omitted.
Mind explaining what this does?
-i = ignore case -g = highlight the particular string that's been found by the last search command -M = verbose prompt -R = all control characters, 'R' for Raw -x4 = tabs take 4 spaces -X = don't reinit the screen when the pager exits -f = force open any kind of file -F = end the pager when the end of the file has been reached -z-1 = use 1 less line for a screen's worth of content
Couple of minor points:
-F is actually 'quit immediately if the input is less than 1 screen-worth of text'. It means you can just pipe any old thing into it, and if it's only a couple of lines, you don't have to quit manually.
-e/-E is the 'quit when reaching input EOF', with a nice little trick that -e only quits the second time you reach EOF, so you can go right to the end of the file, and to quit just hit space or whatever to seek further.
The other thing is:
-R : Like -r, but only ANSI "color" escape sequences are
output in "raw" form. Unlike -r, the screen
appearance is maintained correctly in most cases.
whereas you're describing -r. I'd definitely recommend big-R if you don't enjoy periodic symboljunk terminal confusion.